Class: OnlinePayments::SDK::Domain::TokenCardData

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#card_bin_detailsOnlinePayments::SDK::Domain::CardBinDetails

Returns the current value of card_bin_details.

Returns:



14
15
16
# File 'lib/onlinepayments/sdk/domain/token_card_data.rb', line 14

def card_bin_details
  @card_bin_details
end

#card_without_cvvOnlinePayments::SDK::Domain::CardWithoutCvv

Returns the current value of card_without_cvv.

Returns:



14
15
16
# File 'lib/onlinepayments/sdk/domain/token_card_data.rb', line 14

def card_without_cvv
  @card_without_cvv
end

#cobrand_selection_indicatorString

Returns the current value of cobrand_selection_indicator.

Returns:

  • (String)

    the current value of cobrand_selection_indicator



14
15
16
# File 'lib/onlinepayments/sdk/domain/token_card_data.rb', line 14

def cobrand_selection_indicator
  @cobrand_selection_indicator
end

Instance Method Details

#from_hash(hash) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/onlinepayments/sdk/domain/token_card_data.rb', line 31

def from_hash(hash)
  super
  if hash.has_key? 'cardBinDetails'
    raise TypeError, "value '%s' is not a Hash" % [hash['cardBinDetails']] unless hash['cardBinDetails'].is_a? Hash
    @card_bin_details = OnlinePayments::SDK::Domain::CardBinDetails.new_from_hash(hash['cardBinDetails'])
  end
  if hash.has_key? 'cardWithoutCvv'
    raise TypeError, "value '%s' is not a Hash" % [hash['cardWithoutCvv']] unless hash['cardWithoutCvv'].is_a? Hash
    @card_without_cvv = OnlinePayments::SDK::Domain::CardWithoutCvv.new_from_hash(hash['cardWithoutCvv'])
  end
  if hash.has_key? 'cobrandSelectionIndicator'
    @cobrand_selection_indicator = hash['cobrandSelectionIndicator']
  end
end

#to_hHash

Returns:

  • (Hash)


23
24
25
26
27
28
29
# File 'lib/onlinepayments/sdk/domain/token_card_data.rb', line 23

def to_h
  hash = super
  hash['cardBinDetails'] = @card_bin_details.to_h unless @card_bin_details.nil?
  hash['cardWithoutCvv'] = @card_without_cvv.to_h unless @card_without_cvv.nil?
  hash['cobrandSelectionIndicator'] = @cobrand_selection_indicator unless @cobrand_selection_indicator.nil?
  hash
end