Class: Io::Flow::V0::Models::ExclusionRuleStatistic
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ExclusionRuleStatistic
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#number_items ⇒ Object
readonly
Returns the value of attribute number_items.
-
#state ⇒ Object
readonly
Returns the value of attribute state.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ExclusionRuleStatistic
constructor
A new instance of ExclusionRuleStatistic.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ExclusionRuleStatistic
Returns a new instance of ExclusionRuleStatistic.
29745 29746 29747 29748 29749 29750 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29745 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:state, :number_items], 'ExclusionRuleStatistic') @state = (x = opts.delete(:state); x.is_a?(::Io::Flow::V0::Models::ExclusionRuleState) ? x : ::Io::Flow::V0::Models::ExclusionRuleState.apply(x)) @number_items = HttpClient::Preconditions.assert_class('number_items', opts.delete(:number_items), Integer) end |
Instance Attribute Details
#number_items ⇒ Object (readonly)
Returns the value of attribute number_items.
29743 29744 29745 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29743 def number_items @number_items end |
#state ⇒ Object (readonly)
Returns the value of attribute state.
29743 29744 29745 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29743 def state @state end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
29756 29757 29758 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29756 def copy(incoming={}) ExclusionRuleStatistic.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
29760 29761 29762 29763 29764 29765 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29760 def to_hash { :state => state.value, :number_items => number_items } end |
#to_json ⇒ Object
29752 29753 29754 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29752 def to_json JSON.dump(to_hash) end |