/** * 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 type { Pagination } from './Pagination'; import type { GoogleChromeConnector } 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 declare function instanceOfPaginatedGoogleChromeConnectorList(value: object): value is PaginatedGoogleChromeConnectorList; export declare function PaginatedGoogleChromeConnectorListFromJSON(json: any): PaginatedGoogleChromeConnectorList; export declare function PaginatedGoogleChromeConnectorListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedGoogleChromeConnectorList; export declare function PaginatedGoogleChromeConnectorListToJSON(json: any): PaginatedGoogleChromeConnectorList; export declare function PaginatedGoogleChromeConnectorListToJSONTyped(value?: PaginatedGoogleChromeConnectorList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedGoogleChromeConnectorList.d.ts.map