Class: Secuconnect::Configuration
- Inherits:
-
Object
- Object
- Secuconnect::Configuration
- Defined in:
- lib/secuconnect/configuration.rb
Instance Attribute Summary collapse
-
#secuconnect_base_url ⇒ Object
Returns the value of attribute secuconnect_base_url.
-
#secuconnect_client_id ⇒ Object
Returns the value of attribute secuconnect_client_id.
-
#secuconnect_client_secret ⇒ Object
Returns the value of attribute secuconnect_client_secret.
-
#secuconnect_token_expiration_seconds ⇒ Object
Returns the value of attribute secuconnect_token_expiration_seconds.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
8 9 10 11 12 13 |
# File 'lib/secuconnect/configuration.rb', line 8 def initialize @secuconnect_client_id = "09ae83af7c37121b2de929b211bad944" @secuconnect_client_secret = "9c5f250b69f6436cb38fd780349bc00810d8d5051d3dcf821e428f65a32724bd" @secuconnect_base_url = "https://connect-testing.secupay-ag.de/" @secuconnect_token_expiration_seconds = 1200 end |
Instance Attribute Details
#secuconnect_base_url ⇒ Object
Returns the value of attribute secuconnect_base_url.
5 6 7 |
# File 'lib/secuconnect/configuration.rb', line 5 def secuconnect_base_url @secuconnect_base_url end |
#secuconnect_client_id ⇒ Object
Returns the value of attribute secuconnect_client_id.
5 6 7 |
# File 'lib/secuconnect/configuration.rb', line 5 def secuconnect_client_id @secuconnect_client_id end |
#secuconnect_client_secret ⇒ Object
Returns the value of attribute secuconnect_client_secret.
5 6 7 |
# File 'lib/secuconnect/configuration.rb', line 5 def secuconnect_client_secret @secuconnect_client_secret end |
#secuconnect_token_expiration_seconds ⇒ Object
Returns the value of attribute secuconnect_token_expiration_seconds.
5 6 7 |
# File 'lib/secuconnect/configuration.rb', line 5 def secuconnect_token_expiration_seconds @secuconnect_token_expiration_seconds end |