UNPKG

@fnt-eve/esi-client-typescript

Version:

[![npm version](https://img.shields.io/npm/v/@fnt-eve/esi-client-typescript)](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)

58 lines 2.3 kB
/** * EVE Swagger Interface * An OpenAPI for EVE Online * * The version of the OpenAPI document: 1.33 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { GetUniverseConstellationsConstellationIdPosition } from './GetUniverseConstellationsConstellationIdPosition'; /** * 200 ok object * @export * @interface GetUniverseConstellationsConstellationIdOk */ export interface GetUniverseConstellationsConstellationIdOk { /** * constellation_id integer * @type {number} * @memberof GetUniverseConstellationsConstellationIdOk */ constellationId: number; /** * name string * @type {string} * @memberof GetUniverseConstellationsConstellationIdOk */ name: string; /** * * @type {GetUniverseConstellationsConstellationIdPosition} * @memberof GetUniverseConstellationsConstellationIdOk */ position: GetUniverseConstellationsConstellationIdPosition; /** * The region this constellation is in * @type {number} * @memberof GetUniverseConstellationsConstellationIdOk */ regionId: number; /** * systems array * @type {Array<number>} * @memberof GetUniverseConstellationsConstellationIdOk */ systems: Array<number>; } /** * Check if a given object implements the GetUniverseConstellationsConstellationIdOk interface. */ export declare function instanceOfGetUniverseConstellationsConstellationIdOk(value: object): value is GetUniverseConstellationsConstellationIdOk; export declare function GetUniverseConstellationsConstellationIdOkFromJSON(json: any): GetUniverseConstellationsConstellationIdOk; export declare function GetUniverseConstellationsConstellationIdOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUniverseConstellationsConstellationIdOk; export declare function GetUniverseConstellationsConstellationIdOkToJSON(json: any): GetUniverseConstellationsConstellationIdOk; export declare function GetUniverseConstellationsConstellationIdOkToJSONTyped(value?: GetUniverseConstellationsConstellationIdOk | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUniverseConstellationsConstellationIdOk.d.ts.map