Class: Io::Flow::V0::Models::ReturnPolicyStatistic

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ ReturnPolicyStatistic

Returns a new instance of ReturnPolicyStatistic.



57074
57075
57076
57077
57078
57079
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57074

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_itemsObject (readonly)

Returns the value of attribute number_items.



57072
57073
57074
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57072

def number_items
  @number_items
end

#stateObject (readonly)

Returns the value of attribute state.



57072
57073
57074
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57072

def state
  @state
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



57085
57086
57087
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57085

def copy(incoming={})
  ReturnPolicyStatistic.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



57089
57090
57091
57092
57093
57094
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57089

def to_hash
  {
    :state => state.value,
    :number_items => number_items
  }
end

#to_jsonObject



57081
57082
57083
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57081

def to_json
  JSON.dump(to_hash)
end