/** * 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 { WaasPolicyRule } from './WaasPolicyRule'; /** * * @export * @interface WaasPolicyCreateRequest */ export interface WaasPolicyCreateRequest { /** * Array of rules to add to the policy, will create policy if it doesn't exist * @type {Array} * @memberof WaasPolicyCreateRequest */ rulesToAdd: Array; } export declare function WaasPolicyCreateRequestFromJSON(json: any): WaasPolicyCreateRequest; export declare function WaasPolicyCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasPolicyCreateRequest; export declare function WaasPolicyCreateRequestToJSON(value?: WaasPolicyCreateRequest | null): any;