export interface MasterUser {
  uuid: string;
  name: string;
  firstName: string;
  lastName: string;
  email: string;
  emailVerifiedAt: string | null;
  phone: string | null;
  phoneCountryCode: string | null;
  phoneIsWhatsapp: boolean | null;
  whatsapp: string | null;
  whatsappCountryCode: string | null;
  businessName: string | null;
  businessSubdomain: string | null;
  createdAt: string;
  updatedAt: string;
}

/** Parâmetros de listagem camelCase consumidos pelo BFF (mapeados para snake_case ao chamar Laravel). */
export interface ListMasterUsersParams {
  perPage?: number;
  uuid?: string;
  email?: string;
  search?: string;
  subscriptionStatus?: string;
}
