/** * Invicti 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. */ import { RequestFile } from './models'; /** * Represents a model for carrying out authentication proxy settings. */ export 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 = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "enableCustomProxy", "baseName": "EnableCustomProxy", "type": "boolean" }, { "name": "proxyAddress", "baseName": "ProxyAddress", "type": "string" }, { "name": "proxyAuthenticationRequired", "baseName": "ProxyAuthenticationRequired", "type": "boolean" }, { "name": "proxyDomain", "baseName": "ProxyDomain", "type": "string" }, { "name": "proxyPassword", "baseName": "ProxyPassword", "type": "string" }, { "name": "proxyPort", "baseName": "ProxyPort", "type": "number" }, { "name": "proxyUsername", "baseName": "ProxyUsername", "type": "string" } ]; static getAttributeTypeMap() { return ProxySettingsModel.attributeTypeMap; } }