Class: OnlinePayments::SDK::Domain::TokenData

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#cardOnlinePayments::SDK::Domain::Card

Returns the current value of card.

Returns:



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

def card
  @card
end

#cobrand_selection_indicatorString

Returns the current value of cobrand_selection_indicator.

Returns:

  • (String)

    the current value of cobrand_selection_indicator



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

def cobrand_selection_indicator
  @cobrand_selection_indicator
end

Instance Method Details

#from_hash(hash) ⇒ Object



26
27
28
29
30
31
32
33
34
35
# File 'lib/onlinepayments/sdk/domain/token_data.rb', line 26

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::Card.new_from_hash(hash['card'])
  end
  if hash.has_key? 'cobrandSelectionIndicator'
    @cobrand_selection_indicator = hash['cobrandSelectionIndicator']
  end
end

#to_hHash

Returns:

  • (Hash)


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

def to_h
  hash = super
  hash['card'] = @card.to_h unless @card.nil?
  hash['cobrandSelectionIndicator'] = @cobrand_selection_indicator unless @cobrand_selection_indicator.nil?
  hash
end