edutap.wallet_google.models.primitives.Pagination#

pydantic model edutap.wallet_google.models.primitives.Pagination#

see: https://developers.google.com/wallet/generic/rest/v1/Pagination

Show JSON schema
{
   "title": "Pagination",
   "description": "see: https://developers.google.com/wallet/generic/rest/v1/Pagination",
   "type": "object",
   "properties": {
      "resultsPerPage": {
         "title": "Resultsperpage",
         "type": "integer"
      },
      "nextPageToken": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Nextpagetoken"
      }
   },
   "required": [
      "resultsPerPage"
   ]
}

Fields:
field nextPageToken: str | None = None#
field resultsPerPage: int [Required]#