Class: Io::Flow::V0::Models::ReturnForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ReturnForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#destination ⇒ Object
readonly
Returns the value of attribute destination.
-
#items ⇒ Object
readonly
Returns the value of attribute items.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#origin ⇒ Object
readonly
Returns the value of attribute origin.
-
#service ⇒ Object
readonly
Returns the value of attribute service.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ReturnForm
constructor
A new instance of ReturnForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ReturnForm
Returns a new instance of ReturnForm.
25409 25410 25411 25412 25413 25414 25415 25416 25417 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25409 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:items], 'ReturnForm') @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ReturnLineItem) ? x : ::Io::Flow::V0::Models::ReturnLineItem.new(x)) } @service = (x = opts.delete(:service); x.nil? ? nil : HttpClient::Preconditions.assert_class('service', x, String)) @destination = (x = opts.delete(:destination); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::ShippingAddress) ? x : ::Io::Flow::V0::Models::ShippingAddress.new(x))) @key = (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', x, String)) @origin = (x = opts.delete(:origin); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::ShippingAddress) ? x : ::Io::Flow::V0::Models::ShippingAddress.new(x))) end |
Instance Attribute Details
#destination ⇒ Object (readonly)
Returns the value of attribute destination.
25407 25408 25409 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25407 def destination @destination end |
#items ⇒ Object (readonly)
Returns the value of attribute items.
25407 25408 25409 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25407 def items @items end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
25407 25408 25409 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25407 def key @key end |
#origin ⇒ Object (readonly)
Returns the value of attribute origin.
25407 25408 25409 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25407 def origin @origin end |
#service ⇒ Object (readonly)
Returns the value of attribute service.
25407 25408 25409 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25407 def service @service end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
25423 25424 25425 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25423 def copy(incoming={}) ReturnForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
25427 25428 25429 25430 25431 25432 25433 25434 25435 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25427 def to_hash { :items => items.map { |o| o.to_hash }, :service => service, :destination => destination.nil? ? nil : destination.to_hash, :key => key, :origin => origin.nil? ? nil : origin.to_hash } end |
#to_json ⇒ Object
25419 25420 25421 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25419 def to_json JSON.dump(to_hash) end |