Class: Io::Flow::V0::Models::Delivery

Inherits:
Object
  • 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

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Delivery

Returns a new instance of Delivery.



11518
11519
11520
11521
11522
11523
11524
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11518

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :items, :options], 'Delivery')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::LineItemForm) ? x : ::Io::Flow::V0::Models::LineItemForm.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)) }
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



11516
11517
11518
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11516

def id
  @id
end

#itemsObject (readonly)

Returns the value of attribute items.



11516
11517
11518
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11516

def items
  @items
end

#optionsObject (readonly)

Returns the value of attribute options.



11516
11517
11518
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11516

def options
  @options
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



11530
11531
11532
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11530

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

#to_hashObject



11534
11535
11536
11537
11538
11539
11540
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11534

def to_hash
  {
    :id => id,
    :items => items.map { |o| o.to_hash },
    :options => options.map { |o| o.to_hash }
  }
end

#to_jsonObject



11526
11527
11528
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11526

def to_json
  JSON.dump(to_hash)
end