/** * Netsparker Enterprise API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents a model for carrying out custom 404 settings. */ export declare class Custom404SettingModel { /** * Gets or sets the Custom 404 RegEx. */ 'custom404RegEx'?: string; /** * Gets or sets a value indicating whether Auto 404 detection is disabled. */ 'disableAuto404Detection'?: boolean; /** * Gets or sets the maximum 404 pages to test. */ 'max404PagesToTest': number; /** * Gets or sets the maximum 404 signature. */ 'maximum404Signature': number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }