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.
40245 40246 40247 40248 40249 40250 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40245 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.
40243 40244 40245 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40243 def applied @applied end |
#available ⇒ Object (readonly)
Returns the value of attribute available.
40243 40244 40245 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40243 def available @available end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
40256 40257 40258 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40256 def copy(incoming={}) Promotions.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
40260 40261 40262 40263 40264 40265 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40260 def to_hash { :applied => applied.map { |o| o.to_hash }, :available => available.map { |o| o.to_hash } } end |
#to_json ⇒ Object
40252 40253 40254 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40252 def to_json JSON.dump(to_hash) end |