Type alias BatchResultRecord
BatchResultRecord: { error: RecordError | undefined; operation: RecordOperationType; recordId: string | undefined; ref: string; success: boolean; } & ({ error: undefined; recordId: string; success: true; } | { error: RecordError; recordId: undefined; success: false; })
Type declaration
-
-
operation: RecordOperationType
-
recordId: string | undefined
-
ref: string
-
success: boolean