Class: OnlinePayments::SDK::Domain::LineItem

Inherits:
OnlinePayments::SDK::DataObject show all
Defined in:
lib/onlinepayments/sdk/domain/line_item.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#amount_of_moneyOnlinePayments::SDK::Domain::AmountOfMoney

Returns the current value of amount_of_money.

Returns:



15
16
17
# File 'lib/onlinepayments/sdk/domain/line_item.rb', line 15

def amount_of_money
  @amount_of_money
end

#invoice_dataOnlinePayments::SDK::Domain::LineItemInvoiceData

Returns the current value of invoice_data.

Returns:



15
16
17
# File 'lib/onlinepayments/sdk/domain/line_item.rb', line 15

def invoice_data
  @invoice_data
end

#order_line_detailsOnlinePayments::SDK::Domain::OrderLineDetails

Returns the current value of order_line_details.

Returns:



15
16
17
# File 'lib/onlinepayments/sdk/domain/line_item.rb', line 15

def order_line_details
  @order_line_details
end

Instance Method Details

#from_hash(hash) ⇒ Object



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

def from_hash(hash)
  super
  if hash.key? 'amountOfMoney'
    raise TypeError, "value '%s' is not a Hash" % [hash['amountOfMoney']] unless hash['amountOfMoney'].is_a? Hash
    @amount_of_money = OnlinePayments::SDK::Domain::AmountOfMoney.new_from_hash(hash['amountOfMoney'])
  end
  if hash.key? 'invoiceData'
    raise TypeError, "value '%s' is not a Hash" % [hash['invoiceData']] unless hash['invoiceData'].is_a? Hash
    @invoice_data = OnlinePayments::SDK::Domain::LineItemInvoiceData.new_from_hash(hash['invoiceData'])
  end
  if hash.key? 'orderLineDetails'
    raise TypeError, "value '%s' is not a Hash" % [hash['orderLineDetails']] unless hash['orderLineDetails'].is_a? Hash
    @order_line_details = OnlinePayments::SDK::Domain::OrderLineDetails.new_from_hash(hash['orderLineDetails'])
  end
end

#to_hHash

Returns:

  • (Hash)


21
22
23
24
25
26
27
# File 'lib/onlinepayments/sdk/domain/line_item.rb', line 21

def to_h
  hash = super
  hash['amountOfMoney'] = @amount_of_money.to_h if @amount_of_money
  hash['invoiceData'] = @invoice_data.to_h if @invoice_data
  hash['orderLineDetails'] = @order_line_details.to_h if @order_line_details
  hash
end