Type Alias OtherContact

OtherContact: {
    contact: string;
    contact_message: string;
    language: string;
    last_update?: string;
    status:
        | "pending"
        | "refused"
        | "accepted"
        | "send"
        | "not_sent"
        | "archive";
}

Type declaration

  • contact: string
  • contact_message: string
  • language: string
  • Optionallast_update?: string
  • status: "pending" | "refused" | "accepted" | "send" | "not_sent" | "archive"