/** @description Contact information for the person who will be present for the pickup. */
export 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;
}
