Class: Worldline::Connect::SDK::V1::Domain::RefundResult
- Inherits:
-
AbstractOrderStatus
- Object
- Domain::DataObject
- AbstractOrderStatus
- Worldline::Connect::SDK::V1::Domain::RefundResult
- Defined in:
- lib/worldline/connect/sdk/v1/domain/refund_result.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#refund_output ⇒ Worldline::Connect::SDK::V1::Domain::RefundOutput
The current value of refund_output.
-
#status ⇒ String
The current value of status.
-
#status_output ⇒ Worldline::Connect::SDK::V1::Domain::OrderStatusOutput
The current value of status_output.
Attributes inherited from AbstractOrderStatus
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#refund_output ⇒ Worldline::Connect::SDK::V1::Domain::RefundOutput
Returns the current value of refund_output.
17 18 19 |
# File 'lib/worldline/connect/sdk/v1/domain/refund_result.rb', line 17 def refund_output @refund_output end |
#status ⇒ String
Returns the current value of status.
17 18 19 |
# File 'lib/worldline/connect/sdk/v1/domain/refund_result.rb', line 17 def status @status end |
#status_output ⇒ Worldline::Connect::SDK::V1::Domain::OrderStatusOutput
Returns the current value of status_output.
17 18 19 |
# File 'lib/worldline/connect/sdk/v1/domain/refund_result.rb', line 17 def status_output @status_output end |
Instance Method Details
#from_hash(hash) ⇒ Object
34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/worldline/connect/sdk/v1/domain/refund_result.rb', line 34 def from_hash(hash) super if hash.has_key? 'refundOutput' raise TypeError, "value '%s' is not a Hash" % [hash['refundOutput']] unless hash['refundOutput'].is_a? Hash @refund_output = Worldline::Connect::SDK::V1::Domain::RefundOutput.new_from_hash(hash['refundOutput']) end if hash.has_key? 'status' @status = hash['status'] end if hash.has_key? 'statusOutput' raise TypeError, "value '%s' is not a Hash" % [hash['statusOutput']] unless hash['statusOutput'].is_a? Hash @status_output = Worldline::Connect::SDK::V1::Domain::OrderStatusOutput.new_from_hash(hash['statusOutput']) end end |
#to_h ⇒ Hash
26 27 28 29 30 31 32 |
# File 'lib/worldline/connect/sdk/v1/domain/refund_result.rb', line 26 def to_h hash = super hash['refundOutput'] = @refund_output.to_h unless @refund_output.nil? hash['status'] = @status unless @status.nil? hash['statusOutput'] = @status_output.to_h unless @status_output.nil? hash end |