Class: Io::Flow::V0::Models::TierRuleForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::TierRuleForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#outcome ⇒ Object
readonly
Returns the value of attribute outcome.
-
#position ⇒ Object
readonly
Returns the value of attribute position.
-
#query ⇒ Object
readonly
Returns the value of attribute query.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ TierRuleForm
constructor
A new instance of TierRuleForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ TierRuleForm
Returns a new instance of TierRuleForm.
42122 42123 42124 42125 42126 42127 42128 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42122 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:query, :outcome], 'TierRuleForm') @position = (x = opts.delete(:position); x.nil? ? nil : HttpClient::Preconditions.assert_class('position', x, Integer)) @query = HttpClient::Preconditions.assert_class('query', opts.delete(:query), String) @outcome = (x = opts.delete(:outcome); x.is_a?(::Io::Flow::V0::Models::TierRuleOutcomeForm) ? x : ::Io::Flow::V0::Models::TierRuleOutcomeForm.from_json(x)) end |
Instance Attribute Details
#outcome ⇒ Object (readonly)
Returns the value of attribute outcome.
42120 42121 42122 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42120 def outcome @outcome end |
#position ⇒ Object (readonly)
Returns the value of attribute position.
42120 42121 42122 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42120 def position @position end |
#query ⇒ Object (readonly)
Returns the value of attribute query.
42120 42121 42122 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42120 def query @query end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
42134 42135 42136 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42134 def copy(incoming={}) TierRuleForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
42138 42139 42140 42141 42142 42143 42144 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42138 def to_hash { :position => position, :query => query, :outcome => outcome.to_hash } end |
#to_json ⇒ Object
42130 42131 42132 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42130 def to_json JSON.dump(to_hash) end |