Interface UpdateItemResponse

interface UpdateItemResponse {
    error?: string;
    log?: string;
    success: boolean;
    task_id?: number;
}

Properties

error?: string
log?: string
success: boolean
task_id?: number