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