@piiano/vault-client
Version:
Piiano Vault generated typescript client
18 lines • 412 B
TypeScript
/**
* Pagination information.
*/
export type Paging = {
/**
* Number of results in the current page.
*/
size: number;
/**
* The remaining number of objects that can be read in ensuing calls to this method.
*/
remaining_count: number;
/**
* An opaque string you should provide to get the next page.
*/
cursor: string;
};
//# sourceMappingURL=Paging.d.ts.map