/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { GoogleEndpointDevice } from './GoogleEndpointDevice'; import { GoogleEndpointDeviceFromJSON, GoogleEndpointDeviceFromJSONTyped, GoogleEndpointDeviceToJSON, GoogleEndpointDeviceToJSONTyped, } from './GoogleEndpointDevice'; /** * * @export * @interface PaginatedGoogleEndpointDeviceList */ export interface PaginatedGoogleEndpointDeviceList { /** * * @type {Pagination} * @memberof PaginatedGoogleEndpointDeviceList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedGoogleEndpointDeviceList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedGoogleEndpointDeviceList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedGoogleEndpointDeviceList interface. */ export function instanceOfPaginatedGoogleEndpointDeviceList(value: object): value is PaginatedGoogleEndpointDeviceList { 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 PaginatedGoogleEndpointDeviceListFromJSON(json: any): PaginatedGoogleEndpointDeviceList { return PaginatedGoogleEndpointDeviceListFromJSONTyped(json, false); } export function PaginatedGoogleEndpointDeviceListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedGoogleEndpointDeviceList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(GoogleEndpointDeviceFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedGoogleEndpointDeviceListToJSON(json: any): PaginatedGoogleEndpointDeviceList { return PaginatedGoogleEndpointDeviceListToJSONTyped(json, false); } export function PaginatedGoogleEndpointDeviceListToJSONTyped(value?: PaginatedGoogleEndpointDeviceList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(GoogleEndpointDeviceToJSON)), 'autocomplete': value['autocomplete'], }; }