import { Location } from ".";

export interface Customer {
  company: string | null;
  created_at: string;
  customer_number: string | null;
  date_of_birth: string | null;
  email: string | null;
  enterprise_id: string;
  external_id: string | null;
  first_name: string | null;
  gender: string | null;
  id: string;
  is_existing: boolean;
  language: string | null;
  last_name: string | null;
  location: Location | null;
  notes: null | { note?: string | null };
  phone_number: string | null;
  preferred_contact_id: string | null;
  preferred_office_id: string | null;
  profile_picture: number | null;
  timezone: string;
  updated_at: string;
  user_id: string | null;
  uuid: string;
}
