Class: Ingenico::Connect::SDK::Domain::Token::MandateSepaDirectDebitWithoutCreditor
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Token::MandateSepaDirectDebitWithoutCreditor
- Defined in:
- lib/ingenico/connect/sdk/domain/token/mandate_sepa_direct_debit_without_creditor.rb
Overview
Direct Known Subclasses
Instance Attribute Summary collapse
- #bank_account_iban ⇒ Object
-
#customer_contract_identifier ⇒ Object
String.
- #debtor ⇒ Object
-
#is_recurring ⇒ Object
true/false.
- #mandate_approval ⇒ Object
-
#pre_notification ⇒ Object
String.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#bank_account_iban ⇒ Object
18 19 20 |
# File 'lib/ingenico/connect/sdk/domain/token/mandate_sepa_direct_debit_without_creditor.rb', line 18 def bank_account_iban @bank_account_iban end |
#customer_contract_identifier ⇒ Object
String
21 22 23 |
# File 'lib/ingenico/connect/sdk/domain/token/mandate_sepa_direct_debit_without_creditor.rb', line 21 def customer_contract_identifier @customer_contract_identifier end |
#debtor ⇒ Object
24 25 26 |
# File 'lib/ingenico/connect/sdk/domain/token/mandate_sepa_direct_debit_without_creditor.rb', line 24 def debtor @debtor end |
#is_recurring ⇒ Object
true/false
27 28 29 |
# File 'lib/ingenico/connect/sdk/domain/token/mandate_sepa_direct_debit_without_creditor.rb', line 27 def is_recurring @is_recurring end |
#mandate_approval ⇒ Object
30 31 32 |
# File 'lib/ingenico/connect/sdk/domain/token/mandate_sepa_direct_debit_without_creditor.rb', line 30 def mandate_approval @mandate_approval end |
#pre_notification ⇒ Object
String
33 34 35 |
# File 'lib/ingenico/connect/sdk/domain/token/mandate_sepa_direct_debit_without_creditor.rb', line 33 def pre_notification @pre_notification end |
Instance Method Details
#from_hash(hash) ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/ingenico/connect/sdk/domain/token/mandate_sepa_direct_debit_without_creditor.rb', line 46 def from_hash(hash) super if hash.has_key?('bankAccountIban') if !(hash['bankAccountIban'].is_a? Hash) raise TypeError, "value '%s' is not a Hash" % [hash['bankAccountIban']] end @bank_account_iban = Ingenico::Connect::SDK::Domain::Definitions::BankAccountIban.new_from_hash(hash['bankAccountIban']) end if hash.has_key?('customerContractIdentifier') @customer_contract_identifier = hash['customerContractIdentifier'] end if hash.has_key?('debtor') if !(hash['debtor'].is_a? Hash) raise TypeError, "value '%s' is not a Hash" % [hash['debtor']] end @debtor = Ingenico::Connect::SDK::Domain::Token::Debtor.new_from_hash(hash['debtor']) end if hash.has_key?('isRecurring') @is_recurring = hash['isRecurring'] end if hash.has_key?('mandateApproval') if !(hash['mandateApproval'].is_a? Hash) raise TypeError, "value '%s' is not a Hash" % [hash['mandateApproval']] end @mandate_approval = Ingenico::Connect::SDK::Domain::Token::MandateApproval.new_from_hash(hash['mandateApproval']) end if hash.has_key?('preNotification') @pre_notification = hash['preNotification'] end end |
#to_h ⇒ Object
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/ingenico/connect/sdk/domain/token/mandate_sepa_direct_debit_without_creditor.rb', line 35 def to_h hash = super add_to_hash(hash, 'bankAccountIban', @bank_account_iban) add_to_hash(hash, 'customerContractIdentifier', @customer_contract_identifier) add_to_hash(hash, 'debtor', @debtor) add_to_hash(hash, 'isRecurring', @is_recurring) add_to_hash(hash, 'mandateApproval', @mandate_approval) add_to_hash(hash, 'preNotification', @pre_notification) hash end |