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.



59586
59587
59588
59589
59590
59591
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59586

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.



59584
59585
59586
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59584

def number_items
  @number_items
end

#stateObject (readonly)

Returns the value of attribute state.



59584
59585
59586
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59584

def state
  @state
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



59597
59598
59599
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59597

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

#to_hashObject



59601
59602
59603
59604
59605
59606
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59601

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

#to_jsonObject



59593
59594
59595
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59593

def to_json
  JSON.dump(to_hash)
end