Class: Io::Flow::V0::Models::DeliveryForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::DeliveryForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents a collection of items, the available delivery option tier for that collection of items, and metadata about those options
Instance Attribute Summary collapse
-
#destination ⇒ Object
readonly
Returns the value of attribute destination.
-
#items ⇒ Object
readonly
Returns the value of attribute items.
-
#quote ⇒ Object
readonly
Returns the value of attribute quote.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ DeliveryForm
constructor
A new instance of DeliveryForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ DeliveryForm
12394 12395 12396 12397 12398 12399 12400 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12394 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:quote, :items, :destination], 'DeliveryForm') @quote = HttpClient::Preconditions.assert_class('quote', opts.delete(:quote), String) @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::LineItemForm) ? x : ::Io::Flow::V0::Models::LineItemForm.new(x)) } @destination = (x = opts.delete(:destination); 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.
12392 12393 12394 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12392 def destination @destination end |
#items ⇒ Object (readonly)
Returns the value of attribute items.
12392 12393 12394 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12392 def items @items end |
#quote ⇒ Object (readonly)
Returns the value of attribute quote.
12392 12393 12394 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12392 def quote @quote end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
12406 12407 12408 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12406 def copy(incoming={}) DeliveryForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
12410 12411 12412 12413 12414 12415 12416 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12410 def to_hash { :quote => quote, :items => items.map { |o| o.to_hash }, :destination => destination.to_hash } end |
#to_json ⇒ Object
12402 12403 12404 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12402 def to_json JSON.dump(to_hash) end |