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

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

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Center

Returns a new instance of Center.



14066
14067
14068
14069
14070
14071
14072
14073
14074
14075
14076
14077
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14066

def initialize(incoming={})
  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)
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



14064
14065
14066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14064

def address
  @address
end

#idObject (readonly)

Returns the value of attribute id.



14064
14065
14066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14064

def id
  @id
end

#keyObject (readonly)

Returns the value of attribute key.



14064
14065
14066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14064

def key
  @key
end

#nameObject (readonly)

Returns the value of attribute name.



14064
14065
14066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14064

def name
  @name
end

#packagingObject (readonly)

Returns the value of attribute packaging.



14064
14065
14066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14064

def packaging
  @packaging
end

#scheduleObject (readonly)

Returns the value of attribute schedule.



14064
14065
14066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14064

def schedule
  @schedule
end

#servicesObject (readonly)

Returns the value of attribute services.



14064
14065
14066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14064

def services
  @services
end

#timezoneObject (readonly)

Returns the value of attribute timezone.



14064
14065
14066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14064

def timezone
  @timezone
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



14083
14084
14085
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14083

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

#to_hashObject



14087
14088
14089
14090
14091
14092
14093
14094
14095
14096
14097
14098
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14087

def 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
  }
end

#to_jsonObject



14079
14080
14081
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14079

def to_json
  JSON.dump(to_hash)
end