Class: Io::Flow::V0::Models::BillingChannelPaymentRequestReference

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

Returns a new instance of BillingChannelPaymentRequestReference.



29934
29935
29936
29937
29938
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29934

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

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



29932
29933
29934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29932

def id
  @id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



29944
29945
29946
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29944

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

#to_hashObject



29948
29949
29950
29951
29952
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29948

def to_hash
  {
    :id => id
  }
end

#to_jsonObject



29940
29941
29942
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29940

def to_json
  JSON.dump(to_hash)
end