@sap-cloud-sdk/core
Version:
SAP Cloud SDK for JavaScript core
15 lines • 650 B
TypeScript
import { MethodRequestBuilder } from '../request-builder-base';
/**
* Representation of a batch change set, which holds a collection of write operations.
*/
export declare class BatchChangeSet<RequestT extends MethodRequestBuilder = any> {
readonly requests: RequestT[];
readonly boundary: string;
/**
* Create an instance of BatchChangeSet.
* @param requests - Requests to combine to one change set.
* @param boundary - Request boundary for separation of sub requests. Defaults to an auto generated value.
*/
constructor(requests: RequestT[], boundary?: string);
}
//# sourceMappingURL=batch-change-set.d.ts.map