English
export interface UserMembers { id: string | null; email: string | null; username: string | null; phoneNumber: string | null; picture: string | null; enrolledFactors: Array<string> | null; enrolledEmails: Array<EnrolledEmail> | null; enrolledPhoneNumbers: Array<EnrolledPhoneNumber> | null; enrolledDevices: Array<EnrolledDevice> | null; organizations: Organizations[] | null; userMetadata: { [key: string]: string } | null; appMetadata: { [key: string]: string } | null; }
Show Parameters
Was this page helpful?