Class: Io::Flow::V0::Models::ShopifyLocalPriceMetadata
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ShopifyLocalPriceMetadata
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#price ⇒ Object
readonly
Returns the value of attribute price.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ShopifyLocalPriceMetadata
constructor
A new instance of ShopifyLocalPriceMetadata.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ShopifyLocalPriceMetadata
Returns a new instance of ShopifyLocalPriceMetadata.
67552 67553 67554 67555 67556 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67552 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:price], 'ShopifyLocalPriceMetadata') @price = (x = opts.delete(:price); x.is_a?(::Io::Flow::V0::Models::PriceWithBase) ? x : ::Io::Flow::V0::Models::PriceWithBase.new(x)) end |
Instance Attribute Details
#price ⇒ Object (readonly)
Returns the value of attribute price.
67550 67551 67552 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67550 def price @price end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
67562 67563 67564 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67562 def copy(incoming={}) ShopifyLocalPriceMetadata.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
67566 67567 67568 67569 67570 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67566 def to_hash { :price => price.to_hash } end |
#to_json ⇒ Object
67558 67559 67560 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67558 def to_json JSON.dump(to_hash) end |