@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
24 lines • 713 B
JavaScript
/**
* Continuation token for change feed of entire container, or a specific Epk Range.
* @internal
*/
export class ContinuationTokenForPartitionKey {
/**
* rid of the container for which the continuation token is issued.
*/
rid;
/**
* A specific Partition key in the container for which the continuation token is issued.
*/
partitionKey;
/**
* Continuation value for the specific Partition key in the container.
*/
Continuation;
constructor(rid, partitionKey, continuation) {
this.rid = rid;
this.partitionKey = partitionKey;
this.Continuation = continuation;
}
}
//# sourceMappingURL=ContinuationTokenForPartitionKey.js.map