Class: Io::Flow::V0::Models::ReturnPolicyStatistic
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ReturnPolicyStatistic
- 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 = {}) ⇒ ReturnPolicyStatistic
constructor
A new instance of ReturnPolicyStatistic.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ReturnPolicyStatistic
49517 49518 49519 49520 49521 49522 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49517 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:state, :number_items], 'ReturnPolicyStatistic') @state = (x = opts.delete(:state); x.is_a?(::Io::Flow::V0::Models::ReturnPolicyState) ? x : ::Io::Flow::V0::Models::ReturnPolicyState.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.
49515 49516 49517 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49515 def number_items @number_items end |
#state ⇒ Object (readonly)
Returns the value of attribute state.
49515 49516 49517 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49515 def state @state end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
49528 49529 49530 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49528 def copy(incoming={}) ReturnPolicyStatistic.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
49532 49533 49534 49535 49536 49537 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49532 def to_hash { :state => state.value, :number_items => number_items } end |
#to_json ⇒ Object
49524 49525 49526 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49524 def to_json JSON.dump(to_hash) end |