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