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