/** * 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 BlockaidValidation */ export interface BlockaidValidation { /** * Overall validation result indicating the threat level * @type {string} * @memberof BlockaidValidation */ result: string | null; /** * Human-readable explanation of the validation findings * @type {string} * @memberof BlockaidValidation */ description?: string; /** * Machine-readable reason code for the validation result * @type {string} * @memberof BlockaidValidation */ reason: string; /** * Category of the detected threat or risk * @type {string} * @memberof BlockaidValidation */ classification?: string; } export declare function BlockaidValidationFromJSON(json: any): BlockaidValidation; export declare function BlockaidValidationFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlockaidValidation; export declare function BlockaidValidationToJSON(value?: BlockaidValidation | null): any;