Class: OnlinePayments::SDK::Domain::CustomerAccountAuthentication

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#methodString

Returns the current value of method.

Returns:

  • (String)

    the current value of method



11
12
13
# File 'lib/onlinepayments/sdk/domain/customer_account_authentication.rb', line 11

def method
  @method
end

#utc_timestampString

Returns the current value of utc_timestamp.

Returns:

  • (String)

    the current value of utc_timestamp



11
12
13
# File 'lib/onlinepayments/sdk/domain/customer_account_authentication.rb', line 11

def utc_timestamp
  @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_hHash

Returns:

  • (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