Class: Ingenico::Connect::SDK::Domain::Payment::CustomerAccountAuthentication

Inherits:
Ingenico::Connect::SDK::DataObject show all
Defined in:
lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Connect::SDK::DataObject

new_from_hash

Instance Attribute Details

#dataString

Returns the current value of data.

Returns:

  • (String)

    the current value of data



14
15
16
# File 'lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb', line 14

def data
  @data
end

#methodString

Returns the current value of method.

Returns:

  • (String)

    the current value of method



14
15
16
# File 'lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb', line 14

def method
  @method
end

#utc_timestampString

Returns the current value of utc_timestamp.

Returns:

  • (String)

    the current value of utc_timestamp



14
15
16
# File 'lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb', line 14

def utc_timestamp
  @utc_timestamp
end

Instance Method Details

#from_hash(hash) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb', line 31

def from_hash(hash)
  super
  if hash.has_key? 'data'
    @data = hash['data']
  end
  if hash.has_key? 'method'
    @method = hash['method']
  end
  if hash.has_key? 'utcTimestamp'
    @utc_timestamp = hash['utcTimestamp']
  end
end

#to_hHash

Returns:

  • (Hash)


23
24
25
26
27
28
29
# File 'lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb', line 23

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