Class: Worldline::Connect::SDK::V1::Domain::CapturePaymentOrder
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::CapturePaymentOrder
- Defined in:
- lib/worldline/connect/sdk/v1/domain/capture_payment_order.rb
Instance Attribute Summary collapse
-
#additional_input ⇒ Worldline::Connect::SDK::V1::Domain::CapturePaymentOrderAdditionalInput
The current value of additional_input.
-
#references ⇒ Worldline::Connect::SDK::V1::Domain::CapturePaymentOrderReferences
The current value of references.
-
#shipping ⇒ Worldline::Connect::SDK::V1::Domain::Shipping
The current value of shipping.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#additional_input ⇒ Worldline::Connect::SDK::V1::Domain::CapturePaymentOrderAdditionalInput
Returns the current value of additional_input.
18 19 20 |
# File 'lib/worldline/connect/sdk/v1/domain/capture_payment_order.rb', line 18 def additional_input @additional_input end |
#references ⇒ Worldline::Connect::SDK::V1::Domain::CapturePaymentOrderReferences
Returns the current value of references.
18 19 20 |
# File 'lib/worldline/connect/sdk/v1/domain/capture_payment_order.rb', line 18 def references @references end |
#shipping ⇒ Worldline::Connect::SDK::V1::Domain::Shipping
Returns the current value of shipping.
18 19 20 |
# File 'lib/worldline/connect/sdk/v1/domain/capture_payment_order.rb', line 18 def shipping @shipping end |
Instance Method Details
#from_hash(hash) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/worldline/connect/sdk/v1/domain/capture_payment_order.rb', line 35 def from_hash(hash) super if hash.has_key? 'additionalInput' raise TypeError, "value '%s' is not a Hash" % [hash['additionalInput']] unless hash['additionalInput'].is_a? Hash @additional_input = Worldline::Connect::SDK::V1::Domain::CapturePaymentOrderAdditionalInput.new_from_hash(hash['additionalInput']) end if hash.has_key? 'references' raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash @references = Worldline::Connect::SDK::V1::Domain::CapturePaymentOrderReferences.new_from_hash(hash['references']) end if hash.has_key? 'shipping' raise TypeError, "value '%s' is not a Hash" % [hash['shipping']] unless hash['shipping'].is_a? Hash @shipping = Worldline::Connect::SDK::V1::Domain::Shipping.new_from_hash(hash['shipping']) end end |
#to_h ⇒ Hash
27 28 29 30 31 32 33 |
# File 'lib/worldline/connect/sdk/v1/domain/capture_payment_order.rb', line 27 def to_h hash = super hash['additionalInput'] = @additional_input.to_h unless @additional_input.nil? hash['references'] = @references.to_h unless @references.nil? hash['shipping'] = @shipping.to_h unless @shipping.nil? hash end |