/** @description Specify the name, title and place of the signatory responsible for the dangerous goods shipment. */
export class Signatory {
  /** @description Name of the signatory. */
  contact_name?: string;
  /** @description Title of the signatory. */
  title?: string;
  /** @description Place of the signatory. */
  place?: string;
}
