Class: Io::Flow::V0::Models::DiscountRuleOffer
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::DiscountRuleOffer
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#discount ⇒ Object
readonly
Returns the value of attribute discount.
-
#entitlement ⇒ Object
readonly
Returns the value of attribute entitlement.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ DiscountRuleOffer
constructor
A new instance of DiscountRuleOffer.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ DiscountRuleOffer
Returns a new instance of DiscountRuleOffer.
29347 29348 29349 29350 29351 29352 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29347 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:discount, :entitlement], 'DiscountRuleOffer') @discount = (x = opts.delete(:discount); x.is_a?(::Io::Flow::V0::Models::DiscountOffer) ? x : ::Io::Flow::V0::Models::DiscountOffer.from_json(x)) @entitlement = (x = opts.delete(:entitlement); x.is_a?(::Io::Flow::V0::Models::DiscountRuleEntitlement) ? x : ::Io::Flow::V0::Models::DiscountRuleEntitlement.from_json(x)) end |
Instance Attribute Details
#discount ⇒ Object (readonly)
Returns the value of attribute discount.
29345 29346 29347 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29345 def discount @discount end |
#entitlement ⇒ Object (readonly)
Returns the value of attribute entitlement.
29345 29346 29347 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29345 def entitlement @entitlement end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
29358 29359 29360 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29358 def copy(incoming={}) DiscountRuleOffer.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
29362 29363 29364 29365 29366 29367 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29362 def to_hash { :discount => discount.to_hash, :entitlement => entitlement.to_hash } end |
#to_json ⇒ Object
29354 29355 29356 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29354 def to_json JSON.dump(to_hash) end |