Interface AttachmentInfo

Metadata for a single attachment on a feature.

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

Properties

contentType?: string
name?: string
parentId: FeatureId
size?: number