/** * 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 { V1alpha2DevWorkspaceSpecTemplateCommandsItemsCustomGroup } from '../models/V1alpha2DevWorkspaceSpecTemplateCommandsItemsCustomGroup'; import { HttpFile } from '../http/http'; /** * Custom command whose logic is implementation-dependant and should be provided by the user possibly through some dedicated plugin */ export class V1alpha2DevWorkspaceSpecTemplateCommandsItemsCustom { /** * Class of command that the associated implementation component should use to process this command with the appropriate logic */ 'commandClass': string; /** * Additional free-form configuration for this custom command that the implementation component will know how to use */ 'embeddedResource': any; 'group'?: V1alpha2DevWorkspaceSpecTemplateCommandsItemsCustomGroup; /** * Optional label that provides a label for this command to be used in Editor UI menus for example */ 'label'?: string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "commandClass", "baseName": "commandClass", "type": "string", "format": "" }, { "name": "embeddedResource", "baseName": "embeddedResource", "type": "any", "format": "" }, { "name": "group", "baseName": "group", "type": "V1alpha2DevWorkspaceSpecTemplateCommandsItemsCustomGroup", "format": "" }, { "name": "label", "baseName": "label", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return V1alpha2DevWorkspaceSpecTemplateCommandsItemsCustom.attributeTypeMap; } public constructor() { } }