/** * 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. */ /** * Whether the rule permits or denies the specified action * @export * @enum {string} */ export declare enum WaasPolicyRuleType { Allow = "allow", Deny = "deny" } export declare function WaasPolicyRuleTypeFromJSON(json: any): WaasPolicyRuleType; export declare function WaasPolicyRuleTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasPolicyRuleType; export declare function WaasPolicyRuleTypeToJSON(value?: WaasPolicyRuleType | null): any;