interface UserAnonymous {
    _expandable?: {
        operations?: string;
    } & {
        [key: string]: unknown;
    };
    _links: GenericLinks;
    displayName: string;
    operations?: OperationCheckResult[];
    profilePicture: null | IconV1;
    type: string;
}

Hierarchy

  • Record<string, unknown>
    • UserAnonymous

Properties

_expandable?: {
    operations?: string;
} & {
    [key: string]: unknown;
}
_links: GenericLinks
displayName: string
operations?: OperationCheckResult[]
profilePicture: null | IconV1

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

type: string