Interface SaveRowsResponse

interface SaveRowsResponse {
    committed: boolean;
    errorCount: number;
    result: ModifyRowsResults[];
}

Properties

committed: boolean

Indicates if the changes were actually committed to the database.

errorCount: number

The total number of errors encountered during the operation.

An array of parsed response data (one for each command in the request).

Generated using TypeDoc