@shipengine/connect-fulfillment-provider-api
Version:
OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API
12 lines (11 loc) • 422 B
TypeScript
/** @description Contact information for the buyer of this sales order */
export interface Buyer {
/** @description An ID for this buyer in the vendor API */
buyer_id?: string;
/** @description The full name of the buyer */
name?: string;
/** @description The primary email address of the buyer */
email?: string;
/** @description The primary phone number of the buyer */
phone?: string;
}