/** * 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 { V1alpha2DevWorkspaceTemplateSpecParentStarterProjectsItemsGit } from '../models/V1alpha2DevWorkspaceTemplateSpecParentStarterProjectsItemsGit'; import { V1alpha2DevWorkspaceTemplateSpecParentStarterProjectsItemsZip } from '../models/V1alpha2DevWorkspaceTemplateSpecParentStarterProjectsItemsZip'; import { HttpFile } from '../http/http'; export class V1alpha2DevWorkspaceTemplateSpecParentStarterProjects { /** * Map of implementation-dependant free-form YAML attributes. */ 'attributes'?: any; /** * Description of a starter project */ 'description'?: string; 'git'?: V1alpha2DevWorkspaceTemplateSpecParentStarterProjectsItemsGit; /** * Project name */ 'name': string; /** * Sub-directory from a starter project to be used as root for starter project. */ 'subDir'?: string; 'zip'?: V1alpha2DevWorkspaceTemplateSpecParentStarterProjectsItemsZip; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "attributes", "baseName": "attributes", "type": "any", "format": "" }, { "name": "description", "baseName": "description", "type": "string", "format": "" }, { "name": "git", "baseName": "git", "type": "V1alpha2DevWorkspaceTemplateSpecParentStarterProjectsItemsGit", "format": "" }, { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "subDir", "baseName": "subDir", "type": "string", "format": "" }, { "name": "zip", "baseName": "zip", "type": "V1alpha2DevWorkspaceTemplateSpecParentStarterProjectsItemsZip", "format": "" } ]; static getAttributeTypeMap() { return V1alpha2DevWorkspaceTemplateSpecParentStarterProjects.attributeTypeMap; } public constructor() { } }