Class: Io::Flow::V0::Models::MerchantGiftCardBalanceForm

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 = {}) ⇒ MerchantGiftCardBalanceForm

Returns a new instance of MerchantGiftCardBalanceForm.



46375
46376
46377
46378
46379
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46375

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

Instance Attribute Details

#numberObject (readonly)

Returns the value of attribute number.



46373
46374
46375
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46373

def number
  @number
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



46385
46386
46387
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46385

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

#to_hashObject



46389
46390
46391
46392
46393
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46389

def to_hash
  {
    :number => number
  }
end

#to_jsonObject



46381
46382
46383
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46381

def to_json
  JSON.dump(to_hash)
end