github.com/grokify/go-ringcentral-client@v0.3.31/office/v1/client/model_paging_info.go (about) 1 /* 2 * RingCentral Connect Platform API Explorer 3 * 4 * <p>This is a beta interactive API explorer for the RingCentral Connect Platform. To use this service, you will need to have an account with the proper credentials to generate an OAuth2 access token.</p><p><h2>Quick Start</h2></p><ol><li>1) Go to <b>Authentication > /oauth/token</b></li><li>2) Enter <b>app_key, app_secret, username, password</b> fields and then click \"Try it out!\"</li><li>3) Upon success, your access_token is loaded and you can access any form requiring authorization.</li></ol><h2>Links</h2><ul><li><a href=\"https://github.com/ringcentral\" target=\"_blank\">RingCentral SDKs on Github</a></li><li><a href=\"mailto:devsupport@ringcentral.com\">RingCentral Developer Support Email</a></li></ul> 5 * 6 * API version: 1.0 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package ringcentral 11 12 type PagingInfo struct { 13 // The current page number. 1-indexed, so the first page is 1 by default. May be omitted if result is empty (because non-existent page was specified or perPage=0 was requested) 14 Page int32 `json:"page,omitempty"` 15 // Current page size, describes how many items are in each page. Default value is 100. Maximum value is 1000. If perPage value in the request is greater than 1000, the maximum value (1000) is applied 16 PerPage int32 `json:"perPage,omitempty"` 17 // The zero-based number of the first element on the current page. Omitted if the page is omitted or result is empty 18 PageStart int32 `json:"pageStart,omitempty"` 19 // The zero-based index of the last element on the current page. Omitted if the page is omitted or result is empty 20 PageEnd int32 `json:"pageEnd,omitempty"` 21 // The total number of pages in a dataset. May be omitted for some resources due to performance reasons 22 TotalPages int32 `json:"totalPages,omitempty"` 23 // The total number of elements in a dataset. May be omitted for some resource due to performance reasons 24 TotalElements int32 `json:"totalElements,omitempty"` 25 }