Class: Credigy::AgreementExceptionStatus
- Inherits:
-
Authorized
- Object
- Request
- Authorized
- Credigy::AgreementExceptionStatus
- Defined in:
- lib/credigy/agreement_exception_status.rb
Instance Attribute Summary collapse
-
#agreement_id ⇒ Object
readonly
Returns the value of attribute agreement_id.
Attributes inherited from Authorized
Instance Method Summary collapse
-
#initialize(authorization_token, agreement_id:) ⇒ AgreementExceptionStatus
constructor
A new instance of AgreementExceptionStatus.
- #message ⇒ Object
- #operation ⇒ Object
Methods inherited from Authorized
Methods inherited from Request
#basic_config, #call, #client, #config_options, #extra_config_options, #response, #response_class, #soap_header, #wsdl
Constructor Details
#initialize(authorization_token, agreement_id:) ⇒ AgreementExceptionStatus
Returns a new instance of AgreementExceptionStatus.
8 9 10 |
# File 'lib/credigy/agreement_exception_status.rb', line 8 def initialize(, agreement_id:) @authorization_token, @agreement_id = , agreement_id end |
Instance Attribute Details
#agreement_id ⇒ Object (readonly)
Returns the value of attribute agreement_id.
6 7 8 |
# File 'lib/credigy/agreement_exception_status.rb', line 6 def agreement_id @agreement_id end |
Instance Method Details
#message ⇒ Object
16 17 18 19 20 |
# File 'lib/credigy/agreement_exception_status.rb', line 16 def { 'cred:debtorAgreementID' => agreement_id } end |
#operation ⇒ Object
12 13 14 |
# File 'lib/credigy/agreement_exception_status.rb', line 12 def operation :get_exception_status end |