/** * 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 authentication proxy settings. */ export declare class ProxySettingsModel { /** * Gets or sets a value indicating whether custom proxy is enable . */ 'enableCustomProxy'?: boolean; /** * Gets or sets the proxy address. */ 'proxyAddress'?: string; /** * Gets or sets a value indicating whether the proxy requires authentication. */ 'proxyAuthenticationRequired'?: boolean; /** * Gets or sets the proxy domain. */ 'proxyDomain'?: string; /** * Gets or sets the proxy password. */ 'proxyPassword'?: string; /** * Gets or sets the proxy port. */ 'proxyPort'?: number; /** * Gets or sets the name of the proxy user. */ 'proxyUsername'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }