Class: BrazeRuby::Configuration
- Inherits:
-
Object
- Object
- BrazeRuby::Configuration
- Defined in:
- lib/braze_ruby/configuration.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
-
#rest_api_key ⇒ Object
Returns the value of attribute rest_api_key.
-
#rest_url ⇒ Object
Returns the value of attribute rest_url.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
7 8 9 10 11 |
# File 'lib/braze_ruby/configuration.rb', line 7 def initialize @rest_api_key = nil @rest_url = nil @options = nil end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
3 4 5 |
# File 'lib/braze_ruby/configuration.rb', line 3 def @options end |
#rest_api_key ⇒ Object
Returns the value of attribute rest_api_key.
3 4 5 |
# File 'lib/braze_ruby/configuration.rb', line 3 def rest_api_key @rest_api_key end |
#rest_url ⇒ Object
Returns the value of attribute rest_url.
3 4 5 |
# File 'lib/braze_ruby/configuration.rb', line 3 def rest_url @rest_url end |