Class: Io::Flow::V0::Models::Promotions
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Promotions
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#applied ⇒ Object
readonly
Returns the value of attribute applied.
-
#available ⇒ Object
readonly
Returns the value of attribute available.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Promotions
constructor
A new instance of Promotions.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Promotions
20018 20019 20020 20021 20022 20023 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20018 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:applied, :available], 'Promotions') @applied = HttpClient::Preconditions.assert_class('applied', opts.delete(:applied), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::Promotion) ? x : ::Io::Flow::V0::Models::Promotion.from_json(x)) } @available = HttpClient::Preconditions.assert_class('available', opts.delete(:available), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::Promotion) ? x : ::Io::Flow::V0::Models::Promotion.from_json(x)) } end |
Instance Attribute Details
#applied ⇒ Object (readonly)
Returns the value of attribute applied.
20016 20017 20018 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20016 def applied @applied end |
#available ⇒ Object (readonly)
Returns the value of attribute available.
20016 20017 20018 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20016 def available @available end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
20029 20030 20031 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20029 def copy(incoming={}) Promotions.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
20033 20034 20035 20036 20037 20038 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20033 def to_hash { :applied => applied.map { |o| o.to_hash }, :available => available.map { |o| o.to_hash } } end |
#to_json ⇒ Object
20025 20026 20027 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20025 def to_json JSON.dump(to_hash) end |