Class: Ingenico::Connect::SDK::Domain::Payment::CustomerAccountAuthentication
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Payment::CustomerAccountAuthentication
- Defined in:
- lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb
Instance Attribute Summary collapse
-
#method ⇒ String
The current value of method.
-
#utc_timestamp ⇒ String
The current value of utc_timestamp.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#method ⇒ String
Returns the current value of method.
13 14 15 |
# File 'lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb', line 13 def method @method end |
#utc_timestamp ⇒ String
Returns the current value of utc_timestamp.
13 14 15 |
# File 'lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb', line 13 def @utc_timestamp end |
Instance Method Details
#from_hash(hash) ⇒ Object
27 28 29 30 31 32 33 34 35 |
# File 'lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb', line 27 def from_hash(hash) super if hash.has_key? 'method' @method = hash['method'] end if hash.has_key? 'utcTimestamp' @utc_timestamp = hash['utcTimestamp'] end end |
#to_h ⇒ Hash
20 21 22 23 24 25 |
# File 'lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb', line 20 def to_h hash = super hash['method'] = @method unless @method.nil? hash['utcTimestamp'] = @utc_timestamp unless @utc_timestamp.nil? hash end |