/** * 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 { SecurityCheckGroupModel } from './securityCheckGroupModel'; /** * Represents a model for carrying out security check groups. */ export class SecurityCheckGroupParentModel { 'title'?: string; 'securityCheckGroups'?: Array; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "title", "baseName": "Title", "type": "string" }, { "name": "securityCheckGroups", "baseName": "SecurityCheckGroups", "type": "Array" } ]; static getAttributeTypeMap() { return SecurityCheckGroupParentModel.attributeTypeMap; } }