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