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
Returns a new instance of ReturnPolicyStatistic.
64277 64278 64279 64280 64281 64282 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64277 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.
64275 64276 64277 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64275 def number_items @number_items end |
#state ⇒ Object (readonly)
Returns the value of attribute state.
64275 64276 64277 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64275 def state @state end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
64288 64289 64290 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64288 def copy(incoming={}) ReturnPolicyStatistic.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
64292 64293 64294 64295 64296 64297 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64292 def to_hash { :state => state.value, :number_items => number_items } end |
#to_json ⇒ Object
64284 64285 64286 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64284 def to_json JSON.dump(to_hash) end |