/** * 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 { V230DevfileParentCommandsItemsApply } from '../models/V230DevfileParentCommandsItemsApply'; import { V230DevfileParentCommandsItemsComposite } from '../models/V230DevfileParentCommandsItemsComposite'; import { V230DevfileParentCommandsItemsExec } from '../models/V230DevfileParentCommandsItemsExec'; import { HttpFile } from '../http/http'; export class V230DevfileParentCommands { 'apply'?: V230DevfileParentCommandsItemsApply; /** * Map of implementation-dependant free-form YAML attributes. */ 'attributes'?: any; 'composite'?: V230DevfileParentCommandsItemsComposite; 'exec'?: V230DevfileParentCommandsItemsExec; /** * Mandatory identifier that allows referencing this command in composite commands, from a parent, or in events. */ 'id': string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "apply", "baseName": "apply", "type": "V230DevfileParentCommandsItemsApply", "format": "" }, { "name": "attributes", "baseName": "attributes", "type": "any", "format": "" }, { "name": "composite", "baseName": "composite", "type": "V230DevfileParentCommandsItemsComposite", "format": "" }, { "name": "exec", "baseName": "exec", "type": "V230DevfileParentCommandsItemsExec", "format": "" }, { "name": "id", "baseName": "id", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return V230DevfileParentCommands.attributeTypeMap; } public constructor() { } }