google-wallet
Version:
Google wallet library for Node.js
16 lines (15 loc) • 372 B
TypeScript
export type Pagination = {
/**
* Identifies what kind of resource this is. Value: the fixed string "walletobjects#pagination".
* @deprecated
*/
kind?: string;
/**
* Number of results returned in this page.
*/
resultsPerPage?: number;
/**
* Page token to send to fetch the next page.
*/
nextPageToken?: string;
};