Class: OnlinePayments::SDK::Domain::CustomerAccountAuthentication
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::CustomerAccountAuthentication
- Defined in:
- lib/onlinepayments/sdk/domain/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 OnlinePayments::SDK::DataObject
Instance Attribute Details
#method ⇒ String
Returns the current value of method.
11 12 13 |
# File 'lib/onlinepayments/sdk/domain/customer_account_authentication.rb', line 11 def method @method end |
#utc_timestamp ⇒ String
Returns the current value of utc_timestamp.
11 12 13 |
# File 'lib/onlinepayments/sdk/domain/customer_account_authentication.rb', line 11 def @utc_timestamp end |
Instance Method Details
#from_hash(hash) ⇒ Object
23 24 25 26 27 |
# File 'lib/onlinepayments/sdk/domain/customer_account_authentication.rb', line 23 def from_hash(hash) super @method = hash['method'] if hash.key? 'method' @utc_timestamp = hash['utcTimestamp'] if hash.key? 'utcTimestamp' end |
#to_h ⇒ Hash
16 17 18 19 20 21 |
# File 'lib/onlinepayments/sdk/domain/customer_account_authentication.rb', line 16 def to_h hash = super hash['method'] = @method unless @method.nil? hash['utcTimestamp'] = @utc_timestamp unless @utc_timestamp.nil? hash end |