/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CaptchaProviderEnum } from './CaptchaProviderEnum'; /** * Captcha configuration for an environment. The secret key is never returned. * @export * @interface CaptchaSettings */ export interface CaptchaSettings { /** * Whether captcha verification is enabled * @type {boolean} * @memberof CaptchaSettings */ enabled?: boolean; /** * * @type {CaptchaProviderEnum} * @memberof CaptchaSettings */ provider?: CaptchaProviderEnum; /** * Public site key used to render the captcha widget * @type {string} * @memberof CaptchaSettings */ siteKey?: string; /** * Whether a secret key is configured. The secret itself is encrypted at rest and never returned, so the dashboard uses this to show a masked placeholder. * @type {boolean} * @memberof CaptchaSettings */ hasSecretKey?: boolean; } export declare function CaptchaSettingsFromJSON(json: any): CaptchaSettings; export declare function CaptchaSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaptchaSettings; export declare function CaptchaSettingsToJSON(value?: CaptchaSettings | null): any;