Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.41 KB

File metadata and controls

38 lines (32 loc) · 1.41 KB

UltracartClient::PointOfSaleLocation

Properties

Name Type Description Notes
adddress2 String Address line 2 [optional]
address1 String Address line 1 [optional]
city String City [optional]
country String Country [optional]
distribution_center_code String The distribution center code where inventory is reduced from for this sale. [optional]
external_id String External Id useful for syncing with a remote filesystem, this may be an MD5 hash or whatever suits your needs. [optional]
merchant_id String Merchant ID that owns this location [optional]
pos_location_oid Integer Object identifier of the point of sale location. [optional]
postal_code String Postal code [optional]
state_province String State/province [optional]
tax_county String Tax county associated with this address. Need when a self managed tax configuration is being used. [optional]

Example

require 'ultracart_api'

instance = UltracartClient::PointOfSaleLocation.new(
  adddress2: null,
  address1: null,
  city: null,
  country: null,
  distribution_center_code: null,
  external_id: null,
  merchant_id: null,
  pos_location_oid: null,
  postal_code: null,
  state_province: null,
  tax_county: null
)