Class: Io::Flow::V0::Models::ShopifyOrderDeliveryMetafield
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ShopifyOrderDeliveryMetafield
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Model to represent a delivery metafield
Instance Attribute Summary collapse
-
#items ⇒ Object
readonly
Returns the value of attribute items.
-
#service ⇒ Object
readonly
Returns the value of attribute service.
-
#window ⇒ Object
readonly
Returns the value of attribute window.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ShopifyOrderDeliveryMetafield
constructor
A new instance of ShopifyOrderDeliveryMetafield.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ShopifyOrderDeliveryMetafield
Returns a new instance of ShopifyOrderDeliveryMetafield.
39509 39510 39511 39512 39513 39514 39515 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39509 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:items, :service, :window], 'ShopifyOrderDeliveryMetafield') @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ShopifyOrderDeliveryMetafieldItem) ? x : ::Io::Flow::V0::Models::ShopifyOrderDeliveryMetafieldItem.new(x)) } @service = (x = opts.delete(:service); x.is_a?(::Io::Flow::V0::Models::ServiceSummary) ? x : ::Io::Flow::V0::Models::ServiceSummary.new(x)) @window = (x = opts.delete(:window); x.is_a?(::Io::Flow::V0::Models::DeliveryWindow) ? x : ::Io::Flow::V0::Models::DeliveryWindow.new(x)) end |
Instance Attribute Details
#items ⇒ Object (readonly)
Returns the value of attribute items.
39507 39508 39509 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39507 def items @items end |
#service ⇒ Object (readonly)
Returns the value of attribute service.
39507 39508 39509 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39507 def service @service end |
#window ⇒ Object (readonly)
Returns the value of attribute window.
39507 39508 39509 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39507 def window @window end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
39521 39522 39523 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39521 def copy(incoming={}) ShopifyOrderDeliveryMetafield.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
39525 39526 39527 39528 39529 39530 39531 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39525 def to_hash { :items => items.map { |o| o.to_hash }, :service => service.to_hash, :window => window.to_hash } end |
#to_json ⇒ Object
39517 39518 39519 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39517 def to_json JSON.dump(to_hash) end |