/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; import type { Pagination } from './Pagination'; import { PaginationFromJSON, PaginationFromJSONTyped, PaginationToJSON, PaginationToJSONTyped, } from './Pagination'; import type { MicrosoftEntraProviderUser } from './MicrosoftEntraProviderUser'; import { MicrosoftEntraProviderUserFromJSON, MicrosoftEntraProviderUserFromJSONTyped, MicrosoftEntraProviderUserToJSON, MicrosoftEntraProviderUserToJSONTyped, } 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 function instanceOfPaginatedMicrosoftEntraProviderUserList(value: object): value is PaginatedMicrosoftEntraProviderUserList { if (!('pagination' in value) || value['pagination'] === undefined) return false; if (!('results' in value) || value['results'] === undefined) return false; if (!('autocomplete' in value) || value['autocomplete'] === undefined) return false; return true; } export function PaginatedMicrosoftEntraProviderUserListFromJSON(json: any): PaginatedMicrosoftEntraProviderUserList { return PaginatedMicrosoftEntraProviderUserListFromJSONTyped(json, false); } export function PaginatedMicrosoftEntraProviderUserListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedMicrosoftEntraProviderUserList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(MicrosoftEntraProviderUserFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedMicrosoftEntraProviderUserListToJSON(json: any): PaginatedMicrosoftEntraProviderUserList { return PaginatedMicrosoftEntraProviderUserListToJSONTyped(json, false); } export function PaginatedMicrosoftEntraProviderUserListToJSONTyped(value?: PaginatedMicrosoftEntraProviderUserList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(MicrosoftEntraProviderUserToJSON)), 'autocomplete': value['autocomplete'], }; }