@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
14 lines (13 loc) • 506 B
TypeScript
import Joi from 'joi';
/** @description Contact information for the buyer of this sales order */
export declare class 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;
}
export declare const BuyerSchema: Joi.ObjectSchema<any>;