/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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 { GoogleChromeConnector } from './GoogleChromeConnector'; import { GoogleChromeConnectorFromJSON, GoogleChromeConnectorFromJSONTyped, GoogleChromeConnectorToJSON, GoogleChromeConnectorToJSONTyped, } from './GoogleChromeConnector'; /** * * @export * @interface PaginatedGoogleChromeConnectorList */ export interface PaginatedGoogleChromeConnectorList { /** * * @type {Pagination} * @memberof PaginatedGoogleChromeConnectorList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedGoogleChromeConnectorList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedGoogleChromeConnectorList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedGoogleChromeConnectorList interface. */ export function instanceOfPaginatedGoogleChromeConnectorList(value: object): value is PaginatedGoogleChromeConnectorList { 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 PaginatedGoogleChromeConnectorListFromJSON(json: any): PaginatedGoogleChromeConnectorList { return PaginatedGoogleChromeConnectorListFromJSONTyped(json, false); } export function PaginatedGoogleChromeConnectorListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedGoogleChromeConnectorList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(GoogleChromeConnectorFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedGoogleChromeConnectorListToJSON(json: any): PaginatedGoogleChromeConnectorList { return PaginatedGoogleChromeConnectorListToJSONTyped(json, false); } export function PaginatedGoogleChromeConnectorListToJSONTyped(value?: PaginatedGoogleChromeConnectorList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(GoogleChromeConnectorToJSON)), 'autocomplete': value['autocomplete'], }; }