/** * 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 creating a website data. */ export 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; /** * Gets or sets the tags */ 'tags'?: Array; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "defaultProtocol", "baseName": "DefaultProtocol", "type": "UpdateWebsiteApiModel.DefaultProtocolEnum" }, { "name": "agentMode", "baseName": "AgentMode", "type": "UpdateWebsiteApiModel.AgentModeEnum" }, { "name": "rootUrl", "baseName": "RootUrl", "type": "string" }, { "name": "groups", "baseName": "Groups", "type": "Array" }, { "name": "licenseType", "baseName": "LicenseType", "type": "UpdateWebsiteApiModel.LicenseTypeEnum" }, { "name": "name", "baseName": "Name", "type": "string" }, { "name": "description", "baseName": "Description", "type": "string" }, { "name": "technicalContactEmail", "baseName": "TechnicalContactEmail", "type": "string" }, { "name": "tags", "baseName": "Tags", "type": "Array" } ]; static getAttributeTypeMap() { return UpdateWebsiteApiModel.attributeTypeMap; } } export namespace UpdateWebsiteApiModel { export enum DefaultProtocolEnum { Http = 'Http', Https = 'Https' } export enum AgentModeEnum { Cloud = 'Cloud', Internal = 'Internal' } export enum LicenseTypeEnum { Subscription = 'Subscription', Credit = 'Credit' } }