/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0 * 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 GoogleChromeConnector */ export interface GoogleChromeConnector { /** * * @type {string} * @memberof GoogleChromeConnector */ connectorUuid?: string; /** * * @type {string} * @memberof GoogleChromeConnector */ name: string; /** * * @type {boolean} * @memberof GoogleChromeConnector */ enabled?: boolean; /** * Get object component so that we know how to edit the object * @type {string} * @memberof GoogleChromeConnector */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof GoogleChromeConnector */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof GoogleChromeConnector */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof GoogleChromeConnector */ readonly metaModelName: string; /** * * @type {{ [key: string]: any; }} * @memberof GoogleChromeConnector */ credentials: { [key: string]: any; }; /** * Full URL to be used in Google Workspace configuration * @type {string} * @memberof GoogleChromeConnector */ readonly chromeUrl: string | null; } /** * Check if a given object implements the GoogleChromeConnector interface. */ export declare function instanceOfGoogleChromeConnector(value: object): value is GoogleChromeConnector; export declare function GoogleChromeConnectorFromJSON(json: any): GoogleChromeConnector; export declare function GoogleChromeConnectorFromJSONTyped(json: any, ignoreDiscriminator: boolean): GoogleChromeConnector; export declare function GoogleChromeConnectorToJSON(json: any): GoogleChromeConnector; export declare function GoogleChromeConnectorToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GoogleChromeConnector.d.ts.map