Class: Worldline::Connect::SDK::V1::Domain::TokenNonSepaDirectDebit
- Inherits:
-
AbstractToken
- Object
- Domain::DataObject
- AbstractToken
- Worldline::Connect::SDK::V1::Domain::TokenNonSepaDirectDebit
- Defined in:
- lib/worldline/connect/sdk/v1/domain/token_non_sepa_direct_debit.rb
Instance Attribute Summary collapse
-
#customer ⇒ Worldline::Connect::SDK::V1::Domain::CustomerToken
The current value of customer.
-
#mandate ⇒ Worldline::Connect::SDK::V1::Domain::MandateNonSepaDirectDebit
The current value of mandate.
Attributes inherited from AbstractToken
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#customer ⇒ Worldline::Connect::SDK::V1::Domain::CustomerToken
Returns the current value of customer.
16 17 18 |
# File 'lib/worldline/connect/sdk/v1/domain/token_non_sepa_direct_debit.rb', line 16 def customer @customer end |
#mandate ⇒ Worldline::Connect::SDK::V1::Domain::MandateNonSepaDirectDebit
Returns the current value of mandate.
16 17 18 |
# File 'lib/worldline/connect/sdk/v1/domain/token_non_sepa_direct_debit.rb', line 16 def mandate @mandate end |
Instance Method Details
#from_hash(hash) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/worldline/connect/sdk/v1/domain/token_non_sepa_direct_debit.rb', line 30 def from_hash(hash) super if hash.has_key? 'customer' raise TypeError, "value '%s' is not a Hash" % [hash['customer']] unless hash['customer'].is_a? Hash @customer = Worldline::Connect::SDK::V1::Domain::CustomerToken.new_from_hash(hash['customer']) end if hash.has_key? 'mandate' raise TypeError, "value '%s' is not a Hash" % [hash['mandate']] unless hash['mandate'].is_a? Hash @mandate = Worldline::Connect::SDK::V1::Domain::MandateNonSepaDirectDebit.new_from_hash(hash['mandate']) end end |
#to_h ⇒ Hash
23 24 25 26 27 28 |
# File 'lib/worldline/connect/sdk/v1/domain/token_non_sepa_direct_debit.rb', line 23 def to_h hash = super hash['customer'] = @customer.to_h unless @customer.nil? hash['mandate'] = @mandate.to_h unless @mandate.nil? hash end |