shopify-admin-api
Version:
Shopify Admin API is a NodeJS library built to help developers easily authenticate and make calls against the Shopify API. It was inspired by and borrows heavily from ShopifySharp.
33 lines (32 loc) • 765 B
TypeScript
export interface Destination {
/** E.g. "Steve" */
first_name: string;
/** E.g. "123 Shipping Street" */
address1: string;
/** E.g. "555-555-SHIP" */
phone: string;
/** E.g. "Shippington" */
city: string;
/** E.g. "40003" */
zip: string;
/** E.g. "Kentucky" */
province: string;
/** E.g. "United States" */
country: string;
/** E.g. "Shipper" */
last_name: string;
/** E.g. null */
address2: string | null;
/** E.g. "Shipping Company" */
company: string;
/** E.g. null */
latitude: null;
/** E.g. null */
longitude: null;
/** E.g. "Steve Shipper" */
name: string;
/** E.g. "US" */
country_code: string;
/** E.g. "KY" */
province_code: string;
}