This interface defines the structure of a Waitlist User object.
export interface WaitlistUser {
    id?: string;
    email?: string;
    requested_at?: string;
    status?: 'pending' | 'approved' | 'rejected';
}

Properties

  • id (string, optional): The unique identifier of the waitlist entry.
  • email (string, optional): The email address of the user on the waitlist.
  • requested_at (string, optional): The timestamp when the user requested to join the waitlist.
  • status (string, optional): The status of the waitlist entry (‘pending’, ‘approved’, or ‘rejected’).