UNPKG

@azure/cosmos

Version:
24 lines 713 B
/** * 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