/** * 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 { V1alpha2DevWorkspaceStatusConditions } from '../models/V1alpha2DevWorkspaceStatusConditions'; import { HttpFile } from '../http/http'; /** * DevWorkspaceStatus defines the observed state of DevWorkspace */ export class V1alpha2DevWorkspaceStatus { /** * Conditions represent the latest available observations of an object's state */ 'conditions'?: Array; /** * Id of the DevWorkspace */ 'devworkspaceId': string; /** * Main URL for this DevWorkspace */ 'mainUrl'?: string; /** * Message is a short user-readable message giving additional information about an object's state */ 'message'?: string; 'phase'?: string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "conditions", "baseName": "conditions", "type": "Array", "format": "" }, { "name": "devworkspaceId", "baseName": "devworkspaceId", "type": "string", "format": "" }, { "name": "mainUrl", "baseName": "mainUrl", "type": "string", "format": "" }, { "name": "message", "baseName": "message", "type": "string", "format": "" }, { "name": "phase", "baseName": "phase", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return V1alpha2DevWorkspaceStatus.attributeTypeMap; } public constructor() { } }