/** * 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 { MicrosoftEntraProvider } from './MicrosoftEntraProvider'; import type { Pagination } from './Pagination'; /** * * @export * @interface PaginatedMicrosoftEntraProviderList */ export interface PaginatedMicrosoftEntraProviderList { /** * * @type {Pagination} * @memberof PaginatedMicrosoftEntraProviderList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedMicrosoftEntraProviderList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedMicrosoftEntraProviderList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedMicrosoftEntraProviderList interface. */ export declare function instanceOfPaginatedMicrosoftEntraProviderList(value: object): value is PaginatedMicrosoftEntraProviderList; export declare function PaginatedMicrosoftEntraProviderListFromJSON(json: any): PaginatedMicrosoftEntraProviderList; export declare function PaginatedMicrosoftEntraProviderListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedMicrosoftEntraProviderList; export declare function PaginatedMicrosoftEntraProviderListToJSON(json: any): PaginatedMicrosoftEntraProviderList; export declare function PaginatedMicrosoftEntraProviderListToJSONTyped(value?: PaginatedMicrosoftEntraProviderList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedMicrosoftEntraProviderList.d.ts.map