Class: Worldline::Connect::SDK::V1::Domain::GiftCardPurchase
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::GiftCardPurchase
- Defined in:
- lib/worldline/connect/sdk/v1/domain/gift_card_purchase.rb
Instance Attribute Summary collapse
-
#amount_of_money ⇒ Worldline::Connect::SDK::V1::Domain::AmountOfMoney
The current value of amount_of_money.
-
#number_of_gift_cards ⇒ Integer
The current value of number_of_gift_cards.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#amount_of_money ⇒ Worldline::Connect::SDK::V1::Domain::AmountOfMoney
Returns the current value of amount_of_money.
15 16 17 |
# File 'lib/worldline/connect/sdk/v1/domain/gift_card_purchase.rb', line 15 def amount_of_money @amount_of_money end |
#number_of_gift_cards ⇒ Integer
Returns the current value of number_of_gift_cards.
15 16 17 |
# File 'lib/worldline/connect/sdk/v1/domain/gift_card_purchase.rb', line 15 def number_of_gift_cards @number_of_gift_cards end |
Instance Method Details
#from_hash(hash) ⇒ Object
29 30 31 32 33 34 35 36 37 38 |
# File 'lib/worldline/connect/sdk/v1/domain/gift_card_purchase.rb', line 29 def from_hash(hash) super if hash.has_key? 'amountOfMoney' raise TypeError, "value '%s' is not a Hash" % [hash['amountOfMoney']] unless hash['amountOfMoney'].is_a? Hash @amount_of_money = Worldline::Connect::SDK::V1::Domain::AmountOfMoney.new_from_hash(hash['amountOfMoney']) end if hash.has_key? 'numberOfGiftCards' @number_of_gift_cards = hash['numberOfGiftCards'] end end |
#to_h ⇒ Hash
22 23 24 25 26 27 |
# File 'lib/worldline/connect/sdk/v1/domain/gift_card_purchase.rb', line 22 def to_h hash = super hash['amountOfMoney'] = @amount_of_money.to_h unless @amount_of_money.nil? hash['numberOfGiftCards'] = @number_of_gift_cards unless @number_of_gift_cards.nil? hash end |