/** * 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 shark setting */ export declare class SharkModel { /** * Gets or sets is Shark/Sensor enabled */ 'isSharkEnabled'?: boolean; /** * Gets or sets a value indicating backend-platform type. */ 'sharkPlatformType'?: SharkModel.SharkPlatformTypeEnum; /** * Gets or sets the generated Shark/Sensor password */ 'sharkPassword'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace SharkModel { enum SharkPlatformTypeEnum { AspNet, Php, Java } }