/** * 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 { GroupKerberosSourceConnection } from './GroupKerberosSourceConnection'; /** * * @export * @interface PaginatedGroupKerberosSourceConnectionList */ export interface PaginatedGroupKerberosSourceConnectionList { /** * * @type {Pagination} * @memberof PaginatedGroupKerberosSourceConnectionList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedGroupKerberosSourceConnectionList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedGroupKerberosSourceConnectionList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedGroupKerberosSourceConnectionList interface. */ export declare function instanceOfPaginatedGroupKerberosSourceConnectionList(value: object): value is PaginatedGroupKerberosSourceConnectionList; export declare function PaginatedGroupKerberosSourceConnectionListFromJSON(json: any): PaginatedGroupKerberosSourceConnectionList; export declare function PaginatedGroupKerberosSourceConnectionListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedGroupKerberosSourceConnectionList; export declare function PaginatedGroupKerberosSourceConnectionListToJSON(json: any): PaginatedGroupKerberosSourceConnectionList; export declare function PaginatedGroupKerberosSourceConnectionListToJSONTyped(value?: PaginatedGroupKerberosSourceConnectionList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedGroupKerberosSourceConnectionList.d.ts.map