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

  • error: RecordError | undefined
  • operation: RecordOperationType
  • recordId: string | undefined
  • ref: string
  • success: boolean