Class: OnlinePayments::SDK::Domain::ThreeDSecureData
- Inherits:
-
DataObject
- Object
- DataObject
- OnlinePayments::SDK::Domain::ThreeDSecureData
- Defined in:
- lib/onlinepayments/sdk/domain/three_d_secure_data.rb
Instance Attribute Summary collapse
-
#acs_transaction_id ⇒ String
The current value of acs_transaction_id.
-
#method ⇒ String
The current value of method.
-
#utc_timestamp ⇒ String
The current value of utc_timestamp.
Instance Method Summary collapse
Methods inherited from DataObject
Instance Attribute Details
#acs_transaction_id ⇒ String
Returns the current value of acs_transaction_id.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/three_d_secure_data.rb', line 12 def acs_transaction_id @acs_transaction_id end |
#method ⇒ String
Returns the current value of method.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/three_d_secure_data.rb', line 12 def method @method end |
#utc_timestamp ⇒ String
Returns the current value of utc_timestamp.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/three_d_secure_data.rb', line 12 def end |
Instance Method Details
#from_hash(hash) ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/onlinepayments/sdk/domain/three_d_secure_data.rb', line 29 def from_hash(hash) super if hash.has_key? 'acsTransactionId' @acs_transaction_id = hash['acsTransactionId'] end if hash.has_key? 'method' @method = hash['method'] end if hash.has_key? 'utcTimestamp' = hash['utcTimestamp'] end end |
#to_h ⇒ Hash
21 22 23 24 25 26 27 |
# File 'lib/onlinepayments/sdk/domain/three_d_secure_data.rb', line 21 def to_h hash = super hash['acsTransactionId'] = @acs_transaction_id unless @acs_transaction_id.nil? hash['method'] = @method unless @method.nil? hash['utcTimestamp'] = unless .nil? hash end |