Class: Io::Flow::V0::Models::DeliveryWindowComponents

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ DeliveryWindowComponents

Returns a new instance of DeliveryWindowComponents.



22836
22837
22838
22839
22840
22841
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22836

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:shipment_estimate, :transit_estimate], 'DeliveryWindowComponents')
  @shipment_estimate = (x = opts.delete(:shipment_estimate); x.is_a?(::Io::Flow::V0::Models::DeliveryWindowComponent) ? x : ::Io::Flow::V0::Models::DeliveryWindowComponent.new(x))
  @transit_estimate = (x = opts.delete(:transit_estimate); x.is_a?(::Io::Flow::V0::Models::DeliveryWindowComponent) ? x : ::Io::Flow::V0::Models::DeliveryWindowComponent.new(x))
end

Instance Attribute Details

#shipment_estimateObject (readonly)

Returns the value of attribute shipment_estimate.



22834
22835
22836
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22834

def shipment_estimate
  @shipment_estimate
end

#transit_estimateObject (readonly)

Returns the value of attribute transit_estimate.



22834
22835
22836
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22834

def transit_estimate
  @transit_estimate
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



22847
22848
22849
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22847

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

#to_hashObject



22851
22852
22853
22854
22855
22856
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22851

def to_hash
  {
    :shipment_estimate => shipment_estimate.to_hash,
    :transit_estimate => transit_estimate.to_hash
  }
end

#to_jsonObject



22843
22844
22845
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22843

def to_json
  JSON.dump(to_hash)
end