Interface IUserProfile

interface IUserProfile {
    2FaEnabled: boolean;
    countryCode: string;
    emailId: string;
    emailVerified: boolean;
    firstName: string;
    language: string;
    lastModified: string;
    lastName: string;
    optin: boolean;
    profileImages: {
        [key: string]: string;
    };
    userId: string;
    userName: string;
    websiteUrl: string;
}

Properties

2FaEnabled: boolean
countryCode: string
emailId: string
emailVerified: boolean
firstName: string
language: string
lastModified: string
lastName: string
optin: boolean
profileImages: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string
userId: string
userName: string
websiteUrl: string

Generated using TypeDoc