/** * 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 WaasPolicyDeleteRequest */ export interface WaasPolicyDeleteRequest { /** * Array of rule IDs to delete from the policy * @type {Array} * @memberof WaasPolicyDeleteRequest */ ruleIdsToDelete: Array; } export declare function WaasPolicyDeleteRequestFromJSON(json: any): WaasPolicyDeleteRequest; export declare function WaasPolicyDeleteRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasPolicyDeleteRequest; export declare function WaasPolicyDeleteRequestToJSON(value?: WaasPolicyDeleteRequest | null): any;