PageResponse is to be embedded in gRPC response messages where the corresponding request message has used PageRequest.

message SomeResponse { repeated Bar results = 1; PageResponse page = 2; }

interface PageResponseSDKType {
    next_key: Uint8Array;
    total: bigint;
}

Properties

Properties

next_key: Uint8Array
total: bigint