Class: Io::Flow::V0::Models::PhysicalDelivery

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

Overview

Represents a collection of items, the available delivery option tier for that collection of items, and metadata about those options

Instance Attribute Summary collapse

Attributes inherited from Delivery

#discriminator

Instance Method Summary collapse

Methods inherited from Delivery

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ PhysicalDelivery

Returns a new instance of PhysicalDelivery.



55147
55148
55149
55150
55151
55152
55153
55154
55155
55156
55157
55158
55159
55160
55161
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55147

def initialize(incoming={})
  super(:discriminator => Delivery::Types::PHYSICAL_DELIVERY)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :items, :options], 'PhysicalDelivery')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @key = (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', x, String))
  @center = (x = opts.delete(:center); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::CenterSummary) ? x : ::Io::Flow::V0::Models::CenterSummary.new(x)))
  @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::DeliveryItem) ? x : ::Io::Flow::V0::Models::DeliveryItem.new(x)) }
  @options = HttpClient::Preconditions.assert_class('options', opts.delete(:options), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::DeliveryOption) ? x : ::Io::Flow::V0::Models::DeliveryOption.new(x)) }
  @special_services = (x = opts.delete(:special_services); x.nil? ? nil : HttpClient::Preconditions.assert_class('special_services', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::PhysicalDeliverySpecialSerivce) ? x : ::Io::Flow::V0::Models::PhysicalDeliverySpecialSerivce.apply(x)) })
  @prices = (x = opts.delete(:prices); x.nil? ? nil : HttpClient::Preconditions.assert_class('prices', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::OrderPriceDetail) ? x : ::Io::Flow::V0::Models::OrderPriceDetail.new(x)) })
  @total = (x = opts.delete(:total); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::LocalizedTotal) ? x : ::Io::Flow::V0::Models::LocalizedTotal.new(x)))
  @goods_supply = (x = opts.delete(:goods_supply); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::GoodsSupply) ? x : ::Io::Flow::V0::Models::GoodsSupply.apply(x)))
  @merchant_of_record_flow_entity = (x = opts.delete(:merchant_of_record_flow_entity); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::FlowEntity) ? x : ::Io::Flow::V0::Models::FlowEntity.apply(x)))
end

Instance Attribute Details

#centerObject (readonly)

Returns the value of attribute center.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def center
  @center
end

#goods_supplyObject (readonly)

Returns the value of attribute goods_supply.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def goods_supply
  @goods_supply
end

#idObject (readonly)

Returns the value of attribute id.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def id
  @id
end

#itemsObject (readonly)

Returns the value of attribute items.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def items
  @items
end

#keyObject (readonly)

Returns the value of attribute key.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def key
  @key
end

#merchant_of_record_flow_entityObject (readonly)

Returns the value of attribute merchant_of_record_flow_entity.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def merchant_of_record_flow_entity
  @merchant_of_record_flow_entity
end

#optionsObject (readonly)

Returns the value of attribute options.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def options
  @options
end

#pricesObject (readonly)

Returns the value of attribute prices.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def prices
  @prices
end

#special_servicesObject (readonly)

Returns the value of attribute special_services.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def special_services
  @special_services
end

#totalObject (readonly)

Returns the value of attribute total.



55145
55146
55147
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55145

def total
  @total
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



55167
55168
55169
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55167

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

#subtype_to_hashObject



55171
55172
55173
55174
55175
55176
55177
55178
55179
55180
55181
55182
55183
55184
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55171

def subtype_to_hash
  {
    :id => id,
    :key => key,
    :center => center.nil? ? nil : center.to_hash,
    :items => items.map { |o| o.to_hash },
    :options => options.map { |o| o.to_hash },
    :special_services => special_services.nil? ? nil : special_services.map { |o| o.value },
    :prices => prices.nil? ? nil : prices.map { |o| o.to_hash },
    :total => total.nil? ? nil : total.to_hash,
    :goods_supply => goods_supply.nil? ? nil : goods_supply.value,
    :merchant_of_record_flow_entity => merchant_of_record_flow_entity.nil? ? nil : merchant_of_record_flow_entity.value
  }
end

#to_jsonObject



55163
55164
55165
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55163

def to_json
  JSON.dump(to_hash)
end