Class: Adjust::Core::Configuration
- Inherits:
-
Object
- Object
- Adjust::Core::Configuration
- Defined in:
- lib/adjust/core/configuration.rb
Instance Attribute Summary collapse
-
#app_token ⇒ Object
Returns the value of attribute app_token.
-
#environment ⇒ Object
Returns the value of attribute environment.
Instance Method Summary collapse
Instance Attribute Details
#app_token ⇒ Object
Returns the value of attribute app_token.
6 7 8 |
# File 'lib/adjust/core/configuration.rb', line 6 def app_token @app_token end |
#environment ⇒ Object
Returns the value of attribute environment.
6 7 8 |
# File 'lib/adjust/core/configuration.rb', line 6 def environment @environment end |
Instance Method Details
#to_hash ⇒ Object
18 19 20 21 22 23 |
# File 'lib/adjust/core/configuration.rb', line 18 def to_hash { environment: environment, app_token: app_token } end |