/** * 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. */ import type { Role } from './Role'; import type { Pagination } from './Pagination'; /** * * @export * @interface PaginatedRoleList */ export interface PaginatedRoleList { /** * * @type {Pagination} * @memberof PaginatedRoleList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedRoleList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedRoleList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedRoleList interface. */ export declare function instanceOfPaginatedRoleList(value: object): value is PaginatedRoleList; export declare function PaginatedRoleListFromJSON(json: any): PaginatedRoleList; export declare function PaginatedRoleListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedRoleList; export declare function PaginatedRoleListToJSON(json: any): PaginatedRoleList; export declare function PaginatedRoleListToJSONTyped(value?: PaginatedRoleList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedRoleList.d.ts.map