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
29979 29980 29981 29982 29983 29984 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29979 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.
29977 29978 29979 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29977 def discount @discount end |
#entitlement ⇒ Object (readonly)
Returns the value of attribute entitlement.
29977 29978 29979 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29977 def entitlement @entitlement end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
29990 29991 29992 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29990 def copy(incoming={}) DiscountRuleOffer.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
29994 29995 29996 29997 29998 29999 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29994 def to_hash { :discount => discount.to_hash, :entitlement => entitlement.to_hash } end |
#to_json ⇒ Object
29986 29987 29988 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29986 def to_json JSON.dump(to_hash) end |