/** * 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. */ /** * GoogleChromeConnector Serializer * @export * @interface GoogleChromeConnectorRequest */ export interface GoogleChromeConnectorRequest { /** * * @type {string} * @memberof GoogleChromeConnectorRequest */ connectorUuid?: string; /** * * @type {string} * @memberof GoogleChromeConnectorRequest */ name: string; /** * * @type {boolean} * @memberof GoogleChromeConnectorRequest */ enabled?: boolean; /** * * @type {{ [key: string]: any; }} * @memberof GoogleChromeConnectorRequest */ credentials: { [key: string]: any; }; } /** * Check if a given object implements the GoogleChromeConnectorRequest interface. */ export declare function instanceOfGoogleChromeConnectorRequest(value: object): value is GoogleChromeConnectorRequest; export declare function GoogleChromeConnectorRequestFromJSON(json: any): GoogleChromeConnectorRequest; export declare function GoogleChromeConnectorRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GoogleChromeConnectorRequest; export declare function GoogleChromeConnectorRequestToJSON(json: any): GoogleChromeConnectorRequest; export declare function GoogleChromeConnectorRequestToJSONTyped(value?: GoogleChromeConnectorRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GoogleChromeConnectorRequest.d.ts.map