Interface AttachmentEditOutcome

Outcome envelope for add / update / delete operations.

interface AttachmentEditOutcome {
    attachmentId?: FeatureId;
    error?: {
        code: number;
        description: string;
    };
    parentId?: FeatureId;
    success: boolean;
}

Properties

attachmentId?: FeatureId
error?: {
    code: number;
    description: string;
}
parentId?: FeatureId
success: boolean