/** * 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 creating a website data. */ export declare class UpdateWebsiteApiModel { /** * Gets or sets the default protocol. */ 'defaultProtocol'?: UpdateWebsiteApiModel.DefaultProtocolEnum; /** * Gets or sets the agent mode for the website. */ 'agentMode'?: UpdateWebsiteApiModel.AgentModeEnum; /** * Gets or sets the root URL. */ 'rootUrl': string; /** * Gets or sets the name of groups this website will belong to. */ 'groups'?: Array; /** * Gets or sets the type of the subscription. */ 'licenseType': UpdateWebsiteApiModel.LicenseTypeEnum; /** * Gets or sets the website name. */ 'name': string; /** * Gets or sets the website description. */ 'description'?: string; /** * Gets or sets the technical contact email. */ 'technicalContactEmail'?: 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 UpdateWebsiteApiModel { enum DefaultProtocolEnum { Http, Https } enum AgentModeEnum { Cloud, Internal } enum LicenseTypeEnum { Subscription, Credit } }