Class: Io::Flow::V0::Models::MerchantGiftCardReversal

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ MerchantGiftCardReversal

Returns a new instance of MerchantGiftCardReversal.



46485
46486
46487
46488
46489
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46485

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id], 'MerchantGiftCardReversal')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



46483
46484
46485
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46483

def id
  @id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



46495
46496
46497
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46495

def copy(incoming={})
  MerchantGiftCardReversal.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



46499
46500
46501
46502
46503
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46499

def to_hash
  {
    :id => id
  }
end

#to_jsonObject



46491
46492
46493
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46491

def to_json
  JSON.dump(to_hash)
end