interface UserMembers {
    appMetadata: null | {
        [key: string]: string;
    };
    email: null | string;
    enrolledDevices: null | ShortEntity<"device">[];
    enrolledEmails: null | ShortEntity<"email">[];
    enrolledFactors: null | string[];
    enrolledPhoneNumbers: null | ShortEntity<"phoneNumber">[];
    id: null | string;
    organizations: null | {
        branding: undefined | {
            logoUrl: undefined | string;
        };
        displayName: undefined | string;
        organizationId: undefined | string;
        organizationName: undefined | string;
    }[];
    phoneNumber: null | string;
    picture: null | string;
    userMetadata: null | {
        [key: string]: string;
    };
    username: null | string;
}

Properties

appMetadata: null | {
    [key: string]: string;
}
email: null | string
enrolledDevices: null | ShortEntity<"device">[]
enrolledEmails: null | ShortEntity<"email">[]
enrolledFactors: null | string[]
enrolledPhoneNumbers: null | ShortEntity<"phoneNumber">[]
id: null | string
organizations: null | {
    branding: undefined | {
        logoUrl: undefined | string;
    };
    displayName: undefined | string;
    organizationId: undefined | string;
    organizationName: undefined | string;
}[]
phoneNumber: null | string
picture: null | string
userMetadata: null | {
    [key: string]: string;
}
username: null | string