export interface CustomerCreate {
  /** Customer's email address. */
  email?: string;
  /** Customer's name for display in the UI. */
  displayName?: string;
}
