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.
45950 45951 45952 45953 45954 45955 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45950 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.
45948 45949 45950 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45948 def price @price end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
45961 45962 45963 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45961 def copy(incoming={}) PriceSourceProvided.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
45965 45966 45967 45968 45969 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45965 def subtype_to_hash { :price => price.to_hash } end |
#to_json ⇒ Object
45957 45958 45959 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45957 def to_json JSON.dump(to_hash) end |