Class: OnlinePayments::SDK::Domain::TokenCardData
- Inherits:
-
DataObject
- Object
- DataObject
- OnlinePayments::SDK::Domain::TokenCardData
- Defined in:
- lib/onlinepayments/sdk/domain/token_card_data.rb
Instance Attribute Summary collapse
-
#card_without_cvv ⇒ OnlinePayments::SDK::Domain::CardWithoutCvv
The current value of card_without_cvv.
-
#cobrand_selection_indicator ⇒ String
The current value of cobrand_selection_indicator.
Instance Method Summary collapse
Methods inherited from DataObject
Instance Attribute Details
#card_without_cvv ⇒ OnlinePayments::SDK::Domain::CardWithoutCvv
Returns the current value of card_without_cvv.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/token_card_data.rb', line 12 def card_without_cvv @card_without_cvv end |
#cobrand_selection_indicator ⇒ String
Returns the current value of cobrand_selection_indicator.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/token_card_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_card_data.rb', line 26 def from_hash(hash) super 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_h ⇒ Hash
19 20 21 22 23 24 |
# File 'lib/onlinepayments/sdk/domain/token_card_data.rb', line 19 def to_h hash = super hash['cardWithoutCvv'] = @card_without_cvv.to_h unless @card_without_cvv.nil? hash['cobrandSelectionIndicator'] = @cobrand_selection_indicator unless @cobrand_selection_indicator.nil? hash end |