Class: Io::Flow::V0::Models::CheckoutTokenForm

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

Returns a new instance of CheckoutTokenForm.



20215
20216
20217
20218
20219
20220
20221
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20215

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:order_number, :session_id, :urls], 'CheckoutTokenForm')
  @order_number = HttpClient::Preconditions.assert_class('order_number', opts.delete(:order_number), String)
  @session_id = HttpClient::Preconditions.assert_class('session_id', opts.delete(:session_id), String)
  @urls = (x = opts.delete(:urls); x.is_a?(::Io::Flow::V0::Models::CheckoutUrlsForm) ? x : ::Io::Flow::V0::Models::CheckoutUrlsForm.new(x))
end

Instance Attribute Details

#order_numberObject (readonly)

Returns the value of attribute order_number.



20213
20214
20215
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20213

def order_number
  @order_number
end

#session_idObject (readonly)

Returns the value of attribute session_id.



20213
20214
20215
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20213

def session_id
  @session_id
end

#urlsObject (readonly)

Returns the value of attribute urls.



20213
20214
20215
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20213

def urls
  @urls
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



20227
20228
20229
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20227

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

#to_hashObject



20231
20232
20233
20234
20235
20236
20237
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20231

def to_hash
  {
    :order_number => order_number,
    :session_id => session_id,
    :urls => urls.to_hash
  }
end

#to_jsonObject



20223
20224
20225
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20223

def to_json
  JSON.dump(to_hash)
end