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