/** * 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 { HttpFile } from '../http/http'; /** * Defines the group this command is part of */ export class V1alpha2DevWorkspaceTemplateSpecCommandsItemsExecGroup { /** * Identifies the default command for a given group kind */ 'isDefault'?: boolean; /** * Kind of group the command is part of */ 'kind': V1alpha2DevWorkspaceTemplateSpecCommandsItemsExecGroupKindEnum; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "isDefault", "baseName": "isDefault", "type": "boolean", "format": "" }, { "name": "kind", "baseName": "kind", "type": "V1alpha2DevWorkspaceTemplateSpecCommandsItemsExecGroupKindEnum", "format": "" } ]; static getAttributeTypeMap() { return V1alpha2DevWorkspaceTemplateSpecCommandsItemsExecGroup.attributeTypeMap; } public constructor() { } } export type V1alpha2DevWorkspaceTemplateSpecCommandsItemsExecGroupKindEnum = "build" | "run" | "test" | "debug" | "deploy" ;