This interface defines the structure of a User Phone Number object.
export interface UserPhone {
    id?: string;
    phone_number?: string;
    is_primary?: boolean;
    is_verified?: boolean;
    verified_at?: string;
}

Properties

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