/** * 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 { WaasPolicyConstraintCondition } from './WaasPolicyConstraintCondition'; /** * * @export * @interface WaasPolicyArgumentConstraint */ export interface WaasPolicyArgumentConstraint { /** * * @type {WaasPolicyConstraintCondition} * @memberof WaasPolicyArgumentConstraint */ operator: WaasPolicyConstraintCondition; /** * Reference value for comparison * @type {any} * @memberof WaasPolicyArgumentConstraint */ value: any | null; /** * Index of the function argument to validate * @type {number} * @memberof WaasPolicyArgumentConstraint */ index: number; } export declare function WaasPolicyArgumentConstraintFromJSON(json: any): WaasPolicyArgumentConstraint; export declare function WaasPolicyArgumentConstraintFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasPolicyArgumentConstraint; export declare function WaasPolicyArgumentConstraintToJSON(value?: WaasPolicyArgumentConstraint | null): any;