class Credigy::AgreementExceptionStatus

Attributes

agreement_id[R]

Public Class Methods

new(authorization_token, agreement_id:) click to toggle source
# File lib/credigy/agreement_exception_status.rb, line 8
def initialize(authorization_token, agreement_id:)
  @authorization_token, @agreement_id = authorization_token, agreement_id
end

Public Instance Methods

message() click to toggle source
# File lib/credigy/agreement_exception_status.rb, line 16
def message
  {
    'cred:debtorAgreementID' => agreement_id
  }
end
operation() click to toggle source
# File lib/credigy/agreement_exception_status.rb, line 12
def operation
  :get_exception_status
end