Class: UserapiAi::Configuration
- Inherits:
-
Object
- Object
- UserapiAi::Configuration
- Defined in:
- lib/userapi-ai.rb
Instance Attribute Summary collapse
- #access_token ⇒ Object
-
#api_version ⇒ Object
Returns the value of attribute api_version.
-
#extra_headers ⇒ Object
Returns the value of attribute extra_headers.
-
#request_timeout ⇒ Object
Returns the value of attribute request_timeout.
-
#service ⇒ Object
Returns the value of attribute service.
-
#uri_base ⇒ Object
Returns the value of attribute uri_base.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
19 20 21 22 23 24 25 |
# File 'lib/userapi-ai.rb', line 19 def initialize @access_token = nil @api_version = :v2 @uri_base = "https://api.userapi.ai" @request_timeout = 120 @service = :midjourney end |
Instance Attribute Details
#access_token ⇒ Object
27 28 29 30 31 32 |
# File 'lib/userapi-ai.rb', line 27 def access_token return @access_token if @access_token error_text = "Userapi-Ai access token missing! See https://dashboard.userapi.ai/api-keys" raise ConfigurationError, error_text end |
#api_version ⇒ Object
Returns the value of attribute api_version.
17 18 19 |
# File 'lib/userapi-ai.rb', line 17 def api_version @api_version end |
#extra_headers ⇒ Object
Returns the value of attribute extra_headers.
17 18 19 |
# File 'lib/userapi-ai.rb', line 17 def extra_headers @extra_headers end |
#request_timeout ⇒ Object
Returns the value of attribute request_timeout.
17 18 19 |
# File 'lib/userapi-ai.rb', line 17 def request_timeout @request_timeout end |
#service ⇒ Object
Returns the value of attribute service.
17 18 19 |
# File 'lib/userapi-ai.rb', line 17 def service @service end |
#uri_base ⇒ Object
Returns the value of attribute uri_base.
17 18 19 |
# File 'lib/userapi-ai.rb', line 17 def uri_base @uri_base end |