Class: Worldline::Connect::SDK::V1::Domain::RefundMobileMethodSpecificOutput
- Inherits:
-
RefundMethodSpecificOutput
- Object
- Domain::DataObject
- RefundMethodSpecificOutput
- Worldline::Connect::SDK::V1::Domain::RefundMobileMethodSpecificOutput
- Defined in:
- lib/worldline/connect/sdk/v1/domain/refund_mobile_method_specific_output.rb
Instance Attribute Summary collapse
-
#network ⇒ String
The current value of network.
Attributes inherited from RefundMethodSpecificOutput
#refund_product_id, #total_amount_paid, #total_amount_refunded
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#network ⇒ String
Returns the current value of network.
13 14 15 |
# File 'lib/worldline/connect/sdk/v1/domain/refund_mobile_method_specific_output.rb', line 13 def network @network end |
Instance Method Details
#from_hash(hash) ⇒ Object
24 25 26 27 28 29 |
# File 'lib/worldline/connect/sdk/v1/domain/refund_mobile_method_specific_output.rb', line 24 def from_hash(hash) super if hash.has_key? 'network' @network = hash['network'] end end |
#to_h ⇒ Hash
18 19 20 21 22 |
# File 'lib/worldline/connect/sdk/v1/domain/refund_mobile_method_specific_output.rb', line 18 def to_h hash = super hash['network'] = @network unless @network.nil? hash end |