/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Pagination */ export interface Pagination { /** * * @type {number} * @memberof Pagination */ next: number; /** * * @type {number} * @memberof Pagination */ previous: number; /** * * @type {number} * @memberof Pagination */ count: number; /** * * @type {number} * @memberof Pagination */ current: number; /** * * @type {number} * @memberof Pagination */ totalPages: number; /** * * @type {number} * @memberof Pagination */ startIndex: number; /** * * @type {number} * @memberof Pagination */ endIndex: number; } /** * Check if a given object implements the Pagination interface. */ export declare function instanceOfPagination(value: object): value is Pagination; export declare function PaginationFromJSON(json: any): Pagination; export declare function PaginationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Pagination; export declare function PaginationToJSON(json: any): Pagination; export declare function PaginationToJSONTyped(value?: Pagination | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Pagination.d.ts.map