netsparker-cloud
Version:
JavaScript client for consuming the Netsparker Cloud API.
54 lines (47 loc) • 1.39 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';
import { FileCache } from './fileCache';
/**
* Represents a class that carries out imported links.
*/
export class ImportedLinksSetting {
/**
* Gets or sets the imported files.
*/
'importedFiles'?: Array<FileCache>;
/**
* Gets or sets the imported links.
*/
'importedLinks'?: string;
'importedURL'?: string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "importedFiles",
"baseName": "ImportedFiles",
"type": "Array<FileCache>"
},
{
"name": "importedLinks",
"baseName": "ImportedLinks",
"type": "string"
},
{
"name": "importedURL",
"baseName": "ImportedURL",
"type": "string"
} ];
static getAttributeTypeMap() {
return ImportedLinksSetting.attributeTypeMap;
}
}