@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (9 loc) • 362 B
TypeScript
/** @description Specify the name, title and place of the signatory responsible for the dangerous goods shipment. */
export declare class Signatory {
/** @description Name of the signatory. */
contact_name?: string;
/** @description Title of the signatory. */
title?: string;
/** @description Place of the signatory. */
place?: string;
}