/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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. */ import type { Pagination } from './Pagination'; import type { GrantRequest } from './GrantRequest'; /** * * @export * @interface PaginatedGrantRequestList */ export interface PaginatedGrantRequestList { /** * * @type {Pagination} * @memberof PaginatedGrantRequestList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedGrantRequestList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedGrantRequestList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedGrantRequestList interface. */ export declare function instanceOfPaginatedGrantRequestList(value: object): value is PaginatedGrantRequestList; export declare function PaginatedGrantRequestListFromJSON(json: any): PaginatedGrantRequestList; export declare function PaginatedGrantRequestListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedGrantRequestList; export declare function PaginatedGrantRequestListToJSON(json: any): PaginatedGrantRequestList; export declare function PaginatedGrantRequestListToJSONTyped(value?: PaginatedGrantRequestList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedGrantRequestList.d.ts.map