Class: OnlinePayments::SDK::Domain::TokenResponse

Inherits:
DataObject
  • Object
show all
Defined in:
lib/onlinepayments/sdk/domain/token_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#cardOnlinePayments::SDK::Domain::TokenCard

Returns the current value of card.

Returns:



20
21
22
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 20

def card
  @card
end

#e_walletOnlinePayments::SDK::Domain::TokenEWallet

Returns the current value of e_wallet.

Returns:



20
21
22
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 20

def e_wallet
  @e_wallet
end

#external_token_linkedOnlinePayments::SDK::Domain::ExternalTokenLinked

Returns the current value of external_token_linked.

Returns:



20
21
22
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 20

def external_token_linked
  @external_token_linked
end

#idString

Returns the current value of id.

Returns:

  • (String)

    the current value of id



20
21
22
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 20

def id
  @id
end

#is_temporarytrue/false

Returns the current value of is_temporary.

Returns:

  • (true/false)

    the current value of is_temporary



20
21
22
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 20

def is_temporary
  @is_temporary
end

#network_token_linkedOnlinePayments::SDK::Domain::NetworkTokenLinked

Returns the current value of network_token_linked.

Returns:



20
21
22
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 20

def network_token_linked
  @network_token_linked
end

#payment_product_idInteger

Returns the current value of payment_product_id.

Returns:

  • (Integer)

    the current value of payment_product_id



20
21
22
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 20

def payment_product_id
  @payment_product_id
end

Instance Method Details

#from_hash(hash) ⇒ Object



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 49

def from_hash(hash)
  super
  if hash.has_key? 'card'
    raise TypeError, "value '%s' is not a Hash" % [hash['card']] unless hash['card'].is_a? Hash
    @card = OnlinePayments::SDK::Domain::TokenCard.new_from_hash(hash['card'])
  end
  if hash.has_key? 'eWallet'
    raise TypeError, "value '%s' is not a Hash" % [hash['eWallet']] unless hash['eWallet'].is_a? Hash
    @e_wallet = OnlinePayments::SDK::Domain::TokenEWallet.new_from_hash(hash['eWallet'])
  end
  if hash.has_key? 'externalTokenLinked'
    raise TypeError, "value '%s' is not a Hash" % [hash['externalTokenLinked']] unless hash['externalTokenLinked'].is_a? Hash
    @external_token_linked = OnlinePayments::SDK::Domain::ExternalTokenLinked.new_from_hash(hash['externalTokenLinked'])
  end
  if hash.has_key? 'id'
    @id = hash['id']
  end
  if hash.has_key? 'isTemporary'
    @is_temporary = hash['isTemporary']
  end
  if hash.has_key? 'networkTokenLinked'
    raise TypeError, "value '%s' is not a Hash" % [hash['networkTokenLinked']] unless hash['networkTokenLinked'].is_a? Hash
    @network_token_linked = OnlinePayments::SDK::Domain::NetworkTokenLinked.new_from_hash(hash['networkTokenLinked'])
  end
  if hash.has_key? 'paymentProductId'
    @payment_product_id = hash['paymentProductId']
  end
end

#to_hHash

Returns:

  • (Hash)


37
38
39
40
41
42
43
44
45
46
47
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 37

def to_h
  hash = super
  hash['card'] = @card.to_h unless @card.nil?
  hash['eWallet'] = @e_wallet.to_h unless @e_wallet.nil?
  hash['externalTokenLinked'] = @external_token_linked.to_h unless @external_token_linked.nil?
  hash['id'] = @id unless @id.nil?
  hash['isTemporary'] = @is_temporary unless @is_temporary.nil?
  hash['networkTokenLinked'] = @network_token_linked.to_h unless @network_token_linked.nil?
  hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil?
  hash
end