Class: Io::Flow::V0::Models::PriceSourceProvided
- Inherits:
-
PriceSource
- Object
- PriceSource
- Io::Flow::V0::Models::PriceSourceProvided
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#price ⇒ Object
readonly
Returns the value of attribute price.
Attributes inherited from PriceSource
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PriceSourceProvided
constructor
A new instance of PriceSourceProvided.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from PriceSource
Constructor Details
#initialize(incoming = {}) ⇒ PriceSourceProvided
Returns a new instance of PriceSourceProvided.
60582 60583 60584 60585 60586 60587 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60582 def initialize(incoming={}) super(:discriminator => PriceSource::Types::PRICE_SOURCE_PROVIDED) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:price], 'PriceSourceProvided') @price = (x = opts.delete(:price); x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x)) end |
Instance Attribute Details
#price ⇒ Object (readonly)
Returns the value of attribute price.
60580 60581 60582 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60580 def price @price end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
60593 60594 60595 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60593 def copy(incoming={}) PriceSourceProvided.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
60597 60598 60599 60600 60601 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60597 def subtype_to_hash { :price => price.to_hash } end |
#to_json ⇒ Object
60589 60590 60591 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60589 def to_json JSON.dump(to_hash) end |