This interface defines the structure of a User Email object.
export interface UserEmail {
    id?: string;
    email?: string;
    is_primary?: boolean;
    is_verified?: boolean;
    verified_at?: string;
}

Properties

  • id (string, optional): The unique identifier of the email address.
  • email (string, optional): The email address.
  • is_primary (boolean, optional): Indicates if this is the user’s primary email address.
  • is_verified (boolean, optional): Indicates if the email address has been verified.
  • verified_at (string, optional): The timestamp when the email address was verified.