Archived
32 lines
891 B
TypeScript
32 lines
891 B
TypeScript
/**
|
|
* Dusky API
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: v1
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
import { V1DownwardAPIVolumeFile } from './v1DownwardAPIVolumeFile';
|
|
|
|
export class V1DownwardAPIProjection {
|
|
'items'?: Array<V1DownwardAPIVolumeFile>;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "items",
|
|
"baseName": "items",
|
|
"type": "Array<V1DownwardAPIVolumeFile>"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return V1DownwardAPIProjection.attributeTypeMap;
|
|
}
|
|
}
|
|
|