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