Class: Io::Flow::V0::Models::DeliveryOptionSummary
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::DeliveryOptionSummary
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#cost ⇒ Object
readonly
Returns the value of attribute cost.
-
#delivered_duty ⇒ Object
readonly
Returns the value of attribute delivered_duty.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#price ⇒ Object
readonly
Returns the value of attribute price.
-
#service ⇒ Object
readonly
Returns the value of attribute service.
-
#tier ⇒ Object
readonly
Returns the value of attribute tier.
-
#window ⇒ Object
readonly
Returns the value of attribute window.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ DeliveryOptionSummary
constructor
A new instance of DeliveryOptionSummary.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ DeliveryOptionSummary
Returns a new instance of DeliveryOptionSummary.
10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10061 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :cost, :delivered_duty, :price, :service, :tier, :window], 'DeliveryOptionSummary') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @cost = (x = opts.delete(:cost); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x)) @delivered_duty = (x = opts.delete(:delivered_duty); x.is_a?(::Io::Flow::V0::Models::DeliveredDuty) ? x : ::Io::Flow::V0::Models::DeliveredDuty.apply(x)) @price = (x = opts.delete(:price); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x)) @service = (x = opts.delete(:service); x.is_a?(::Io::Flow::V0::Models::ServiceReference) ? x : ::Io::Flow::V0::Models::ServiceReference.new(x)) @tier = (x = opts.delete(:tier); x.is_a?(::Io::Flow::V0::Models::TierReference) ? x : ::Io::Flow::V0::Models::TierReference.new(x)) @window = (x = opts.delete(:window); x.is_a?(::Io::Flow::V0::Models::DatetimeRange) ? x : ::Io::Flow::V0::Models::DatetimeRange.new(x)) end |
Instance Attribute Details
#cost ⇒ Object (readonly)
Returns the value of attribute cost.
10059 10060 10061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10059 def cost @cost end |
#delivered_duty ⇒ Object (readonly)
Returns the value of attribute delivered_duty.
10059 10060 10061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10059 def delivered_duty @delivered_duty end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
10059 10060 10061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10059 def id @id end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
10059 10060 10061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10059 def price @price end |
#service ⇒ Object (readonly)
Returns the value of attribute service.
10059 10060 10061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10059 def service @service end |
#tier ⇒ Object (readonly)
Returns the value of attribute tier.
10059 10060 10061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10059 def tier @tier end |
#window ⇒ Object (readonly)
Returns the value of attribute window.
10059 10060 10061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10059 def window @window end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
10077 10078 10079 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10077 def copy(incoming={}) DeliveryOptionSummary.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10081 def to_hash { :id => id, :cost => cost.to_hash, :delivered_duty => delivered_duty.value, :price => price.to_hash, :service => service.to_hash, :tier => tier.to_hash, :window => window.to_hash } end |
#to_json ⇒ Object
10073 10074 10075 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10073 def to_json JSON.dump(to_hash) end |