An attachment info object from an ArcGIS server.

interface AttachmentInfo {
    contentType?: string;
    id?: number;
    name?: string;
    size?: number;
    url?: string;
}

Properties

contentType?: string

The MIME content type of the attachment, e.g. "application/pdf".

id?: number

Id of the attachment.

name?: string

The name of the attachment.

size?: number

The size of the attachment in bytes.

url?: string

The URL of the attachment.