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