class Ingenico::Connect::SDK::Domain::Payment::RefundMobileMethodSpecificOutput

@attr [String] network

Attributes

network[RW]

Public Instance Methods

from_hash(hash) click to toggle source
# File lib/ingenico/connect/sdk/domain/payment/refund_mobile_method_specific_output.rb, line 23
def from_hash(hash)
  super
  if hash.has_key? 'network'
    @network = hash['network']
  end
end
to_h() click to toggle source

@return (Hash)

# File lib/ingenico/connect/sdk/domain/payment/refund_mobile_method_specific_output.rb, line 17
def to_h
  hash = super
  hash['network'] = @network unless @network.nil?
  hash
end