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