Class: AdobeDocApi::Configuration
- Inherits:
-
Object
- Object
- AdobeDocApi::Configuration
- Defined in:
- lib/adobe_doc_api/configuration.rb
Instance Attribute Summary collapse
-
#client_id ⇒ Object
Returns the value of attribute client_id.
-
#client_secret ⇒ Object
Returns the value of attribute client_secret.
-
#org_id ⇒ Object
Returns the value of attribute org_id.
-
#private_key_path ⇒ Object
Returns the value of attribute private_key_path.
-
#tech_account_id ⇒ Object
Returns the value of attribute tech_account_id.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 9 10 11 |
# File 'lib/adobe_doc_api/configuration.rb', line 5 def initialize @client_id = nil @client_sercret = nil @org_id = nil @tech_account_id = nil @private_key_path = nil end |
Instance Attribute Details
#client_id ⇒ Object
Returns the value of attribute client_id.
3 4 5 |
# File 'lib/adobe_doc_api/configuration.rb', line 3 def client_id @client_id end |
#client_secret ⇒ Object
Returns the value of attribute client_secret.
3 4 5 |
# File 'lib/adobe_doc_api/configuration.rb', line 3 def client_secret @client_secret end |
#org_id ⇒ Object
Returns the value of attribute org_id.
3 4 5 |
# File 'lib/adobe_doc_api/configuration.rb', line 3 def org_id @org_id end |
#private_key_path ⇒ Object
Returns the value of attribute private_key_path.
3 4 5 |
# File 'lib/adobe_doc_api/configuration.rb', line 3 def private_key_path @private_key_path end |
#tech_account_id ⇒ Object
Returns the value of attribute tech_account_id.
3 4 5 |
# File 'lib/adobe_doc_api/configuration.rb', line 3 def tech_account_id @tech_account_id end |