netsparker-cloud
Version:
JavaScript client for consuming the Netsparker Cloud API.
98 lines (91 loc) • 2.43 kB
text/typescript
/**
* 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 class that carries out basic scan task profile data.
*/
export class ReducedScanTaskProfile {
/**
* Gets or sets the identifier.
*/
'id'?: string;
/**
* Gets or sets a value indicating whether this scan profile is user\'s profile.
*/
'isMine'?: boolean;
/**
* Gets or sets a value indicating whether this instance is primary scan profile for a website.
*/
'isPrimary'?: boolean;
/**
* Gets or sets a value indicating whether this scan profile is shared to other team members.
*/
'isShared'?: boolean;
/**
* Gets or sets the name.
*/
'name'?: string;
/**
* Gets or sets the target URL.
*/
'targetUrl'?: string;
/**
* Gets or sets the Scan Policy name.
*/
'scanPolicyName'?: string;
'tags'?: Array<string>;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "id",
"baseName": "Id",
"type": "string"
},
{
"name": "isMine",
"baseName": "IsMine",
"type": "boolean"
},
{
"name": "isPrimary",
"baseName": "IsPrimary",
"type": "boolean"
},
{
"name": "isShared",
"baseName": "IsShared",
"type": "boolean"
},
{
"name": "name",
"baseName": "Name",
"type": "string"
},
{
"name": "targetUrl",
"baseName": "TargetUrl",
"type": "string"
},
{
"name": "scanPolicyName",
"baseName": "ScanPolicyName",
"type": "string"
},
{
"name": "tags",
"baseName": "Tags",
"type": "Array<string>"
} ];
static getAttributeTypeMap() {
return ReducedScanTaskProfile.attributeTypeMap;
}
}