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.



38776
38777
38778
38779
38780
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38776

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.



38774
38775
38776
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38774

def number
  @number
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



38786
38787
38788
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38786

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

#to_hashObject



38790
38791
38792
38793
38794
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38790

def to_hash
  {
    :number => number
  }
end

#to_jsonObject



38782
38783
38784
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38782

def to_json
  JSON.dump(to_hash)
end