Class: WidgitAccountsSdk::Configuration
- Inherits:
-
Object
- Object
- WidgitAccountsSdk::Configuration
- Defined in:
- lib/widgit_accounts_sdk/configuration.rb
Instance Attribute Summary collapse
-
#api_key ⇒ Object
Returns the value of attribute api_key.
-
#client_id ⇒ Object
Returns the value of attribute client_id.
-
#client_secret ⇒ Object
Returns the value of attribute client_secret.
-
#host ⇒ Object
Returns the value of attribute host.
-
#redirect_uri ⇒ Object
Returns the value of attribute redirect_uri.
-
#watch_webhook_url ⇒ Object
Returns the value of attribute watch_webhook_url.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
10 11 12 13 14 15 16 17 |
# File 'lib/widgit_accounts_sdk/configuration.rb', line 10 def initialize @api_key = nil @host = nil @watch_webhook_url @redirect_uri = nil @client_id = nil @client_secret = nil end |
Instance Attribute Details
#api_key ⇒ Object
Returns the value of attribute api_key.
4 5 6 |
# File 'lib/widgit_accounts_sdk/configuration.rb', line 4 def api_key @api_key end |
#client_id ⇒ Object
Returns the value of attribute client_id.
7 8 9 |
# File 'lib/widgit_accounts_sdk/configuration.rb', line 7 def client_id @client_id end |
#client_secret ⇒ Object
Returns the value of attribute client_secret.
8 9 10 |
# File 'lib/widgit_accounts_sdk/configuration.rb', line 8 def client_secret @client_secret end |
#host ⇒ Object
Returns the value of attribute host.
3 4 5 |
# File 'lib/widgit_accounts_sdk/configuration.rb', line 3 def host @host end |
#redirect_uri ⇒ Object
Returns the value of attribute redirect_uri.
6 7 8 |
# File 'lib/widgit_accounts_sdk/configuration.rb', line 6 def redirect_uri @redirect_uri end |
#watch_webhook_url ⇒ Object
Returns the value of attribute watch_webhook_url.
5 6 7 |
# File 'lib/widgit_accounts_sdk/configuration.rb', line 5 def watch_webhook_url @watch_webhook_url end |