@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
14 lines (13 loc) • 712 B
TypeScript
/** @description Contact information for the person who will be present for the pickup. */
export declare class PickupContactDetails {
/** @description The first name of the person who will be there for the pickup. */
first_name: string;
/** @description The last name of the person who will be there for the pickup. */
last_name?: string;
/** @description The e-mail address of the person who will be there for the pickup. */
email: string;
/** @description The phone number of the person who will be there for the pickup. */
phone_number: string;
/** @description The phone extension of the person who will be there for the pickup. */
phone_number_extension?: string;
}