Class: Io::Flow::V0::Models::DeliveryWindowComponentsV2
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::DeliveryWindowComponentsV2
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Components and information taken into account when calculating a final delivery window
Instance Attribute Summary collapse
-
#processing_estimates ⇒ Object
readonly
Returns the value of attribute processing_estimates.
-
#transit_estimates ⇒ Object
readonly
Returns the value of attribute transit_estimates.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ DeliveryWindowComponentsV2
constructor
A new instance of DeliveryWindowComponentsV2.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ DeliveryWindowComponentsV2
Returns a new instance of DeliveryWindowComponentsV2.
18411 18412 18413 18414 18415 18416 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18411 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:processing_estimates, :transit_estimates], 'DeliveryWindowComponentsV2') @processing_estimates = HttpClient::Preconditions.assert_class('processing_estimates', opts.delete(:processing_estimates), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ProcessingEstimate) ? x : ::Io::Flow::V0::Models::ProcessingEstimate.new(x)) } @transit_estimates = HttpClient::Preconditions.assert_class('transit_estimates', opts.delete(:transit_estimates), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::TransitEstimate) ? x : ::Io::Flow::V0::Models::TransitEstimate.new(x)) } end |
Instance Attribute Details
#processing_estimates ⇒ Object (readonly)
Returns the value of attribute processing_estimates.
18409 18410 18411 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18409 def processing_estimates @processing_estimates end |
#transit_estimates ⇒ Object (readonly)
Returns the value of attribute transit_estimates.
18409 18410 18411 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18409 def transit_estimates @transit_estimates end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
18422 18423 18424 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18422 def copy(incoming={}) DeliveryWindowComponentsV2.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
18426 18427 18428 18429 18430 18431 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18426 def to_hash { :processing_estimates => processing_estimates.map { |o| o.to_hash }, :transit_estimates => transit_estimates.map { |o| o.to_hash } } end |
#to_json ⇒ Object
18418 18419 18420 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18418 def to_json JSON.dump(to_hash) end |