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