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