Interface AvatarData

interface AvatarData {
    creationTimeStamp?: Date;
    default?: boolean;
    modifiedTimeStamp?: Date;
    name?: string;
    type?: string;
    uri?: string;
}

Properties

creationTimeStamp?: Date

Timestamp of avatar data creation

default?: boolean

Describes whether or not the avatar file for this identity is a default image.

modifiedTimeStamp?: Date

Timestamp of last avatar data modification

name?: string

The name of the avatar file

type?: string

The content-type of the avatar file.

uri?: string

The uri location of the avatar file only if stored externally.