Skip to content

Latest commit

 

History

History
54 lines (48 loc) · 2.2 KB

File metadata and controls

54 lines (48 loc) · 2.2 KB

UltracartClient::CartShipping

Properties

Name Type Description Notes
address1 String Address line 1 [optional]
address2 String Address line 2 [optional]
city String City [optional]
company String Company [optional]
country_code String ISO-3166 two letter country code [optional]
day_phone String Day time phone [optional]
delivery_date String Date the customer is requesting delivery on. Typically used for perishable product delivery. [optional]
evening_phone String Evening phone [optional]
first_name String First name [optional]
last_name String Last name [optional]
lift_gate Boolean Lift gate requested (LTL shipping methods only) [optional]
postal_code String Postal code [optional]
ship_on_date String Date the customer is requesting that the order ship on. Typically used for perishable product delivery. [optional]
ship_to_residential Boolean True if the shipping adress is residential. Effects the methods that are available to the customer as well as the price of the shipping method. [optional]
shipping_3rd_party_account_number String 3rd party account number to ship against for UPS or FedEx [optional]
shipping_method String Shipping method [optional]
special_instructions String Special instructions from the customer regarding shipping [optional]
state_region String State/Region [optional]
title String Title [optional]

Example

require 'ultracart_api'

instance = UltracartClient::CartShipping.new(
  address1: null,
  address2: null,
  city: null,
  company: null,
  country_code: null,
  day_phone: null,
  delivery_date: null,
  evening_phone: null,
  first_name: null,
  last_name: null,
  lift_gate: null,
  postal_code: null,
  ship_on_date: null,
  ship_to_residential: null,
  shipping_3rd_party_account_number: null,
  shipping_method: null,
  special_instructions: null,
  state_region: null,
  title: null
)