/** * 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 { ScheduledScanRecurrenceApiModel } from './scheduledScanRecurrenceApiModel'; /** * Contains properties that required to start a scheduled scan according to profile specified. */ export class NewScheduledWithProfileApiModel { /** * Gets or sets the profile name. */ 'profileName': string; /** * Gets or sets the target URI. */ 'targetUri': string; /** * Gets or sets the name. */ 'name': string; /** * Gets or sets the next execution time. Date string must be in the same format as in the account settings. */ 'nextExecutionTime': string; /** * Gets or sets the run interval of scheduled scan. */ 'scheduleRunType': NewScheduledWithProfileApiModel.ScheduleRunTypeEnum; 'customRecurrence'?: ScheduledScanRecurrenceApiModel; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "profileName", "baseName": "ProfileName", "type": "string" }, { "name": "targetUri", "baseName": "TargetUri", "type": "string" }, { "name": "name", "baseName": "Name", "type": "string" }, { "name": "nextExecutionTime", "baseName": "NextExecutionTime", "type": "string" }, { "name": "scheduleRunType", "baseName": "ScheduleRunType", "type": "NewScheduledWithProfileApiModel.ScheduleRunTypeEnum" }, { "name": "customRecurrence", "baseName": "CustomRecurrence", "type": "ScheduledScanRecurrenceApiModel" } ]; static getAttributeTypeMap() { return NewScheduledWithProfileApiModel.attributeTypeMap; } } export namespace NewScheduledWithProfileApiModel { export enum ScheduleRunTypeEnum { Once = 'Once', Daily = 'Daily', Weekly = 'Weekly', Monthly = 'Monthly', Quarterly = 'Quarterly', Biannually = 'Biannually', Yearly = 'Yearly', Custom = 'Custom' } }