Interface HonuaAttachmentEditResult

Result of an add/update/delete attachment operation.

interface HonuaAttachmentEditResult {
    error?: {
        code: number;
        description: string;
    };
    objectId?: number;
    success: boolean;
}

Properties

error?: {
    code: number;
    description: string;
}
objectId?: number
success: boolean