export type IContact = { id?: string; first_name: string; last_name: string; email: string; send_contract: boolean; send_invoice: boolean; customer: string; }; export type IContactInput = { first_name: string; last_name: string; email: string; send_contract: boolean; send_invoice: boolean; customer: string; }; export type IContactList = { next: string; previous: string; result: IContact[]; };