interface ProcessResult {
    createdAt?: Date;
    processId: string;
    result: string;
}

Properties

createdAt?: Date

Creation time of the result.

processId: string

ID of the parent process.

result: string

Result in JSON format.