UNPKG

netsparker-cloud

Version:

JavaScript client for consuming the Netsparker Cloud API.

56 lines (49 loc) 1.43 kB
/** * 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 scan notification api model */ export class ScanNotificationScanTaskGroupApiModel { /** * Gets or sets the website id */ 'websiteId'?: string; /** * Gets or sets the scan task group name */ 'scanTaskGroupName'?: string; /** * Gets or sets the scan task group id */ 'scanTaskGroupId'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "websiteId", "baseName": "WebsiteId", "type": "string" }, { "name": "scanTaskGroupName", "baseName": "ScanTaskGroupName", "type": "string" }, { "name": "scanTaskGroupId", "baseName": "ScanTaskGroupId", "type": "string" } ]; static getAttributeTypeMap() { return ScanNotificationScanTaskGroupApiModel.attributeTypeMap; } }