/** * 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. */ /** * * @export * @interface HCaptchaSettings */ export interface HCaptchaSettings { /** * Whether hCaptcha verification is enabled * @type {boolean} * @memberof HCaptchaSettings */ enabled?: boolean; /** * Secret key used to validate captcha response. This will never be surfaced in a GET response. * @type {string} * @memberof HCaptchaSettings */ secretKey?: string; /** * Public site key used to render the hCaptcha widget * @type {string} * @memberof HCaptchaSettings */ siteKey?: string; } export declare function HCaptchaSettingsFromJSON(json: any): HCaptchaSettings; export declare function HCaptchaSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): HCaptchaSettings; export declare function HCaptchaSettingsToJSON(value?: HCaptchaSettings | null): any;