/* 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 { License } from './License'; import { LicenseFromJSON, LicenseFromJSONTyped, LicenseToJSON, LicenseToJSONTyped, } from './License'; /** * * @export * @interface PaginatedLicenseList */ export interface PaginatedLicenseList { /** * * @type {Pagination} * @memberof PaginatedLicenseList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedLicenseList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedLicenseList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedLicenseList interface. */ export function instanceOfPaginatedLicenseList(value: object): value is PaginatedLicenseList { 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 PaginatedLicenseListFromJSON(json: any): PaginatedLicenseList { return PaginatedLicenseListFromJSONTyped(json, false); } export function PaginatedLicenseListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedLicenseList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(LicenseFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedLicenseListToJSON(json: any): PaginatedLicenseList { return PaginatedLicenseListToJSONTyped(json, false); } export function PaginatedLicenseListToJSONTyped(value?: PaginatedLicenseList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(LicenseToJSON)), 'autocomplete': value['autocomplete'], }; }