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.
39924 39925 39926 39927 39928 39929 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39924 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.
39922 39923 39924 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39922 def price @price end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
39935 39936 39937 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39935 def copy(incoming={}) PriceSourceProvided.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
39939 39940 39941 39942 39943 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39939 def subtype_to_hash { :price => price.to_hash } end |
#to_json ⇒ Object
39931 39932 39933 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39931 def to_json JSON.dump(to_hash) end |