/** * 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 { V1alpha2DevWorkspaceSpecContributions } from '../models/V1alpha2DevWorkspaceSpecContributions'; import { V1alpha2DevWorkspaceSpecTemplate } from '../models/V1alpha2DevWorkspaceSpecTemplate'; import { HttpFile } from '../http/http'; /** * DevWorkspaceSpec defines the desired state of DevWorkspace */ export class V1alpha2DevWorkspaceSpec { 'contributions'?: Array; 'routingClass'?: string; 'started': boolean; 'template'?: V1alpha2DevWorkspaceSpecTemplate; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "contributions", "baseName": "contributions", "type": "Array", "format": "" }, { "name": "routingClass", "baseName": "routingClass", "type": "string", "format": "" }, { "name": "started", "baseName": "started", "type": "boolean", "format": "" }, { "name": "template", "baseName": "template", "type": "V1alpha2DevWorkspaceSpecTemplate", "format": "" } ]; static getAttributeTypeMap() { return V1alpha2DevWorkspaceSpec.attributeTypeMap; } public constructor() { } }