UNPKG

netsparker-cloud

Version:

JavaScript client for consuming the Netsparker Cloud API.

47 lines (40 loc) 1.25 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'; /** * Retrieves the authentication status and all error messages from other integration processes. */ export class IntegrationWizardResultModel { /** * Gets the returning status of the request. */ 'status'?: boolean; /** * If is there gets the returning error message of the request. */ 'errorMessage'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "status", "baseName": "Status", "type": "boolean" }, { "name": "errorMessage", "baseName": "ErrorMessage", "type": "string" } ]; static getAttributeTypeMap() { return IntegrationWizardResultModel.attributeTypeMap; } }