Skip to content
On this page

Customers

Customer properties

type Customer = {
  id: ID;
  email: string;
  phone: string;
  first_name: string;
  last_name: string;
  created_at: Date | string;
  updated_at: Date | string;
  addresses?: Address[];
  metadata: any;
};