/** * 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'; /** * Agent group model for updating */ export class AgentGroupApiUpdateModel { /** * Agents ids */ 'agents': Array; /** * The identifier */ 'id': string; /** * The agent group name */ 'name': string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "agents", "baseName": "Agents", "type": "Array" }, { "name": "id", "baseName": "Id", "type": "string" }, { "name": "name", "baseName": "Name", "type": "string" } ]; static getAttributeTypeMap() { return AgentGroupApiUpdateModel.attributeTypeMap; } }