Class: OnlinePayments::SDK::Domain::ThreeDSecureData

Inherits:
OnlinePayments::SDK::DataObject show all
Defined in:
lib/onlinepayments/sdk/domain/three_d_secure_data.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#acs_transaction_idString

Returns the current value of acs_transaction_id.

Returns:

  • (String)

    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

#methodString

Returns the current value of method.

Returns:

  • (String)

    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_timestampString

Returns the current value of utc_timestamp.

Returns:

  • (String)

    the current value of utc_timestamp



12
13
14
# File 'lib/onlinepayments/sdk/domain/three_d_secure_data.rb', line 12

def utc_timestamp
  @utc_timestamp
end

Instance Method Details

#from_hash(hash) ⇒ Object



26
27
28
29
30
31
# File 'lib/onlinepayments/sdk/domain/three_d_secure_data.rb', line 26

def from_hash(hash)
  super
  @acs_transaction_id = hash['acsTransactionId'] if hash.key? 'acsTransactionId'
  @method = hash['method'] if hash.key? 'method'
  @utc_timestamp = hash['utcTimestamp'] if hash.key? 'utcTimestamp'
end

#to_hHash

Returns:

  • (Hash)


18
19
20
21
22
23
24
# File 'lib/onlinepayments/sdk/domain/three_d_secure_data.rb', line 18

def to_h
  hash = super
  hash['acsTransactionId'] = @acs_transaction_id unless @acs_transaction_id.nil?
  hash['method'] = @method unless @method.nil?
  hash['utcTimestamp'] = @utc_timestamp unless @utc_timestamp.nil?
  hash
end