Class: BrazeRuby::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/braze_ruby/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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

#optionsObject

Returns the value of attribute options.



3
4
5
# File 'lib/braze_ruby/configuration.rb', line 3

def options
  @options
end

#rest_api_keyObject

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_urlObject

Returns the value of attribute rest_url.



3
4
5
# File 'lib/braze_ruby/configuration.rb', line 3

def rest_url
  @rest_url
end