/* 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 { DeviceAccessGroup } from './DeviceAccessGroup'; import { DeviceAccessGroupFromJSON, DeviceAccessGroupFromJSONTyped, DeviceAccessGroupToJSON, DeviceAccessGroupToJSONTyped, } from './DeviceAccessGroup'; import type { Pagination } from './Pagination'; import { PaginationFromJSON, PaginationFromJSONTyped, PaginationToJSON, PaginationToJSONTyped, } from './Pagination'; /** * * @export * @interface PaginatedDeviceAccessGroupList */ export interface PaginatedDeviceAccessGroupList { /** * * @type {Pagination} * @memberof PaginatedDeviceAccessGroupList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedDeviceAccessGroupList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedDeviceAccessGroupList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedDeviceAccessGroupList interface. */ export function instanceOfPaginatedDeviceAccessGroupList(value: object): value is PaginatedDeviceAccessGroupList { 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 PaginatedDeviceAccessGroupListFromJSON(json: any): PaginatedDeviceAccessGroupList { return PaginatedDeviceAccessGroupListFromJSONTyped(json, false); } export function PaginatedDeviceAccessGroupListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedDeviceAccessGroupList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(DeviceAccessGroupFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedDeviceAccessGroupListToJSON(json: any): PaginatedDeviceAccessGroupList { return PaginatedDeviceAccessGroupListToJSONTyped(json, false); } export function PaginatedDeviceAccessGroupListToJSONTyped(value?: PaginatedDeviceAccessGroupList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(DeviceAccessGroupToJSON)), 'autocomplete': value['autocomplete'], }; }