interface UserMembers {
    email: null | string;
    id: null | string;
    phoneNumber: null | string;
    picture: null | string;
    username: null | string;
    getAppMetadata(): null | {
        [key: string]: string;
    };
    getEnrolledFactors(): null | string[];
    getOrganizations(): null | {
        branding: undefined | {
            logoUrl: undefined | string;
        };
        displayName: undefined | string;
        organizationId: undefined | string;
        organizationName: undefined | string;
    }[];
    getUserMetadata(): null | {
        [key: string]: string;
    };
}

Properties

email: null | string
id: null | string
phoneNumber: null | string
picture: null | string
username: null | string

Methods

  • Returns null | {
        [key: string]: string;
    }

  • Returns null | {
        branding: undefined | {
            logoUrl: undefined | string;
        };
        displayName: undefined | string;
        organizationId: undefined | string;
        organizationName: undefined | string;
    }[]

  • Returns null | {
        [key: string]: string;
    }