/** * Engine API * Civilization Engine API * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { PowerDto } from './powerDto'; export interface UnitDto { uuid?: string; name?: string; names?: { [key: string]: string; }; descriptions?: { [key: string]: string; }; visible?: boolean; type?: UnitDto.TypeEnum; rank?: number; rank1Power?: PowerDto; rank2Power?: PowerDto; rank3Power?: PowerDto; rank4Power?: PowerDto; } export declare namespace UnitDto { type TypeEnum = 'Infantry' | 'Mounted' | 'Artillery' | 'Aircraft'; const TypeEnum: { Infantry: TypeEnum; Mounted: TypeEnum; Artillery: TypeEnum; Aircraft: TypeEnum; }; }