This object represents an icon. If used as a profilePicture, this may be returned as null, depending on the user's privacy setting.

interface IconV1 {
    height: number;
    isDefault: boolean;
    path: string;
    width: number;
}

Hierarchy

  • Record<string, unknown>
    • IconV1

Properties

height: number
isDefault: boolean
path: string
width: number