Class: Io::Flow::V0::Models::Center

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

Overview

Represents a facility capable of fulfilling a shipment

Instance Attribute Summary collapse

Attributes inherited from ExpandableCenter

#discriminator

Instance Method Summary collapse

Methods inherited from ExpandableCenter

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ Center

Returns a new instance of Center.



31871
31872
31873
31874
31875
31876
31877
31878
31879
31880
31881
31882
31883
31884
31885
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31871

def initialize(incoming={})
  super(:discriminator => ExpandableCenter::Types::CENTER)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :key, :address, :packaging, :name, :services, :schedule, :timezone], 'Center')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String)
  @address = (x = opts.delete(:address); x.is_a?(::Io::Flow::V0::Models::ShippingAddress) ? x : ::Io::Flow::V0::Models::ShippingAddress.new(x))
  @packaging = HttpClient::Preconditions.assert_class('packaging', opts.delete(:packaging), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::Packaging) ? x : ::Io::Flow::V0::Models::Packaging.new(x)) }
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @services = HttpClient::Preconditions.assert_class('services', opts.delete(:services), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::AvailableService) ? x : ::Io::Flow::V0::Models::AvailableService.new(x)) }
  @schedule = (x = opts.delete(:schedule); x.is_a?(::Io::Flow::V0::Models::Schedule) ? x : ::Io::Flow::V0::Models::Schedule.new(x))
  @timezone = HttpClient::Preconditions.assert_class('timezone', opts.delete(:timezone), String)
  @capabilities = (x = opts.delete(:capabilities); x.nil? ? nil : HttpClient::Preconditions.assert_class('capabilities', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::CenterCapability) ? x : ::Io::Flow::V0::Models::CenterCapability.apply(x)) })
  @partner_center = (x = opts.delete(:partner_center); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PartnerCenter) ? x : ::Io::Flow::V0::Models::PartnerCenter.new(x)))
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def address
  @address
end

#capabilitiesObject (readonly)

Returns the value of attribute capabilities.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def capabilities
  @capabilities
end

#idObject (readonly)

Returns the value of attribute id.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def id
  @id
end

#keyObject (readonly)

Returns the value of attribute key.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def key
  @key
end

#nameObject (readonly)

Returns the value of attribute name.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def name
  @name
end

#packagingObject (readonly)

Returns the value of attribute packaging.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def packaging
  @packaging
end

#partner_centerObject (readonly)

Returns the value of attribute partner_center.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def partner_center
  @partner_center
end

#scheduleObject (readonly)

Returns the value of attribute schedule.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def schedule
  @schedule
end

#servicesObject (readonly)

Returns the value of attribute services.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def services
  @services
end

#timezoneObject (readonly)

Returns the value of attribute timezone.



31869
31870
31871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31869

def timezone
  @timezone
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



31891
31892
31893
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31891

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

#subtype_to_hashObject



31895
31896
31897
31898
31899
31900
31901
31902
31903
31904
31905
31906
31907
31908
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31895

def subtype_to_hash
  {
    :id => id,
    :key => key,
    :address => address.to_hash,
    :packaging => packaging.map { |o| o.to_hash },
    :name => name,
    :services => services.map { |o| o.to_hash },
    :schedule => schedule.to_hash,
    :timezone => timezone,
    :capabilities => capabilities.nil? ? nil : capabilities.map { |o| o.value },
    :partner_center => partner_center.nil? ? nil : partner_center.to_hash
  }
end

#to_jsonObject



31887
31888
31889
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31887

def to_json
  JSON.dump(to_hash)
end