Class: Io::Flow::V0::Models::TierRule
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::TierRule
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
System to filter incoming quote for a shipment request based on a query and output corresponding outcomes.
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#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 = {}) ⇒ TierRule
constructor
A new instance of TierRule.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ TierRule
Returns a new instance of TierRule.
70863 70864 70865 70866 70867 70868 70869 70870 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70863 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :position, :query, :outcome], 'TierRule') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @position = HttpClient::Preconditions.assert_class('position', opts.delete(:position), Integer) @query = HttpClient::Preconditions.assert_class('query', opts.delete(:query), String) @outcome = (x = opts.delete(:outcome); x.is_a?(::Io::Flow::V0::Models::TierRuleOutcome) ? x : ::Io::Flow::V0::Models::TierRuleOutcome.from_json(x)) end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
70861 70862 70863 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70861 def id @id end |
#outcome ⇒ Object (readonly)
Returns the value of attribute outcome.
70861 70862 70863 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70861 def outcome @outcome end |
#position ⇒ Object (readonly)
Returns the value of attribute position.
70861 70862 70863 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70861 def position @position end |
#query ⇒ Object (readonly)
Returns the value of attribute query.
70861 70862 70863 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70861 def query @query end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
70876 70877 70878 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70876 def copy(incoming={}) TierRule.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
70880 70881 70882 70883 70884 70885 70886 70887 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70880 def to_hash { :id => id, :position => position, :query => query, :outcome => outcome.to_hash } end |
#to_json ⇒ Object
70872 70873 70874 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70872 def to_json JSON.dump(to_hash) end |