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
Returns a new instance of Promotions.
28575 28576 28577 28578 28579 28580 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28575 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.
28573 28574 28575 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28573 def applied @applied end |
#available ⇒ Object (readonly)
Returns the value of attribute available.
28573 28574 28575 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28573 def available @available end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
28586 28587 28588 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28586 def copy(incoming={}) Promotions.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
28590 28591 28592 28593 28594 28595 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28590 def to_hash { :applied => applied.map { |o| o.to_hash }, :available => available.map { |o| o.to_hash } } end |
#to_json ⇒ Object
28582 28583 28584 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28582 def to_json JSON.dump(to_hash) end |