Class: WealthForge3::Configuration
- Inherits:
-
Object
- Object
- WealthForge3::Configuration
- Defined in:
- lib/wealthforge/configuration.rb
Instance Attribute Summary collapse
-
#api_url ⇒ Object
Returns the value of attribute api_url.
-
#environment ⇒ Object
Returns the value of attribute environment.
-
#production_url ⇒ Object
Returns the value of attribute production_url.
-
#sandbox_url ⇒ Object
Returns the value of attribute sandbox_url.
-
#session_id ⇒ Object
Returns the value of attribute session_id.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
10 11 12 13 14 15 16 |
# File 'lib/wealthforge/configuration.rb', line 10 def initialize @session_id = nil @environment = nil @api_url = nil @production_url = "https://wealthforgeprod01.decisions.com/Primary/restapi/Flow/" @sandbox_url = "https://wealthforgedev01.decisions.com/decisions/Primary/restapi/Flow" end |
Instance Attribute Details
#api_url ⇒ Object
Returns the value of attribute api_url.
4 5 6 |
# File 'lib/wealthforge/configuration.rb', line 4 def api_url @api_url end |
#environment ⇒ Object
Returns the value of attribute environment.
5 6 7 |
# File 'lib/wealthforge/configuration.rb', line 5 def environment @environment end |
#production_url ⇒ Object
Returns the value of attribute production_url.
7 8 9 |
# File 'lib/wealthforge/configuration.rb', line 7 def production_url @production_url end |
#sandbox_url ⇒ Object
Returns the value of attribute sandbox_url.
8 9 10 |
# File 'lib/wealthforge/configuration.rb', line 8 def sandbox_url @sandbox_url end |
#session_id ⇒ Object
Returns the value of attribute session_id.
3 4 5 |
# File 'lib/wealthforge/configuration.rb', line 3 def session_id @session_id end |
#version ⇒ Object
Returns the value of attribute version.
6 7 8 |
# File 'lib/wealthforge/configuration.rb', line 6 def version @version end |