@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
19 lines • 500 B
JavaScript
/**
* Continuation token for change feed of entire container, or a specific Epk Range.
* @internal
*/
export class CompositeContinuationToken {
/**
* rid of the container for which the continuation token is issued.
*/
rid;
/**
* List of Epk Ranges part of the continuation token
*/
Continuation;
constructor(rid, Continuation) {
this.rid = rid;
this.Continuation = Continuation;
}
}
//# sourceMappingURL=CompositeContinuationToken.js.map