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