/** * Netsparker 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. */ /** * Represents a model for carrying out scan status data for API. */ export declare class ApiScanStatusModel { /** * Gets or sets the completed steps. */ 'completedSteps'?: number; /** * Gets or sets the estimated launch time in minutes for queued scans. */ 'estimatedLaunchTime'?: number; /** * Gets or sets the estimated steps. */ 'estimatedSteps'?: number; /** * Gets or sets the state. */ 'state'?: ApiScanStatusModel.StateEnum; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace ApiScanStatusModel { enum StateEnum { Queued, Scanning, Archiving, Complete, Failed, Cancelled, Delayed, Pausing, Paused, Resuming } }