/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V230DevfileCommandsItemsCompositeGroup } from '../models/V230DevfileCommandsItemsCompositeGroup'; import { HttpFile } from '../http/http'; /** * Composite command that allows executing several sub-commands either sequentially or concurrently */ export class V230DevfileCommandsItemsComposite { /** * The commands that comprise this composite command */ 'commands'?: Array; 'group'?: V230DevfileCommandsItemsCompositeGroup; /** * Optional label that provides a label for this command to be used in Editor UI menus for example */ 'label'?: string; /** * Indicates if the sub-commands should be executed concurrently */ 'parallel'?: boolean; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "commands", "baseName": "commands", "type": "Array", "format": "" }, { "name": "group", "baseName": "group", "type": "V230DevfileCommandsItemsCompositeGroup", "format": "" }, { "name": "label", "baseName": "label", "type": "string", "format": "" }, { "name": "parallel", "baseName": "parallel", "type": "boolean", "format": "" } ]; static getAttributeTypeMap() { return V230DevfileCommandsItemsComposite.attributeTypeMap; } public constructor() { } }