Class: Io::Flow::V0::Models::CheckoutTokenForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::CheckoutTokenForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#order_number ⇒ Object
readonly
Returns the value of attribute order_number.
-
#session_id ⇒ Object
readonly
Returns the value of attribute session_id.
-
#urls ⇒ Object
readonly
Returns the value of attribute urls.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ CheckoutTokenForm
constructor
A new instance of CheckoutTokenForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ CheckoutTokenForm
Returns a new instance of CheckoutTokenForm.
20359 20360 20361 20362 20363 20364 20365 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20359 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_number ⇒ Object (readonly)
Returns the value of attribute order_number.
20357 20358 20359 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20357 def order_number @order_number end |
#session_id ⇒ Object (readonly)
Returns the value of attribute session_id.
20357 20358 20359 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20357 def session_id @session_id end |
#urls ⇒ Object (readonly)
Returns the value of attribute urls.
20357 20358 20359 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20357 def urls @urls end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
20371 20372 20373 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20371 def copy(incoming={}) CheckoutTokenForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
20375 20376 20377 20378 20379 20380 20381 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20375 def to_hash { :order_number => order_number, :session_id => session_id, :urls => urls.to_hash } end |
#to_json ⇒ Object
20367 20368 20369 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20367 def to_json JSON.dump(to_hash) end |