Interface IUserAbout

The about profile details of a single user.

interface IUserAbout {
    aboutProfile?: IUserAboutProfile;
    createdAt: string;
    fullName: string;
    id: string;
    isProtected?: boolean;
    isVerified: boolean;
    profileImage: string;
    profileImageShape?: string;
    userName: string;
    verificationInfo?: IUserAboutVerificationInfo;
}

Implemented by

Properties

aboutProfile?: IUserAboutProfile

About profile details of the user.

createdAt: string

The creation date of user's account.

fullName: string

The full name of the user.

id: string

The rest id of the user.

isProtected?: boolean

Whether the account is protected.

isVerified: boolean

Whether the account is verified or not.

profileImage: string

The url of the profile image.

profileImageShape?: string

The shape of the profile image.

userName: string

The username/screenname of the user.

verificationInfo?: IUserAboutVerificationInfo

Verification metadata of the user.