JS API Reference

Interface: ResultData<T>

activity/results.ResultData

Type parameters

NameType
Tany

Implemented by

Table of contents

Properties

Properties

index

index: number

Index of script command

Defined in

src/activity/results.ts:8


eventDate

eventDate: string

The datetime of the event on which the result was received

Defined in

src/activity/results.ts:10


result

result: "Ok" | "Error"

If is success

Defined in

src/activity/results.ts:12


stdout

Optional stdout: null | string | ArrayBuffer

stdout of script command

Defined in

src/activity/results.ts:14


stderr

Optional stderr: null | string | ArrayBuffer

stderr of script command

Defined in

src/activity/results.ts:16


message

Optional message: null | string

an error message if the result is not successful

Defined in

src/activity/results.ts:18


isBatchFinished

Optional isBatchFinished: boolean

Is batch of already finished

Defined in

src/activity/results.ts:20


data

Optional data: T

In case the command was related to upload or download, this will contain the transferred data

Defined in

src/activity/results.ts:23

Was this helpful?