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)

75 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. */ /** * 200 ok object * @export * @interface GetUniverseGraphicsGraphicIdOk */ export interface GetUniverseGraphicsGraphicIdOk { /** * collision_file string * @type {string} * @memberof GetUniverseGraphicsGraphicIdOk */ collisionFile?: string; /** * graphic_file string * @type {string} * @memberof GetUniverseGraphicsGraphicIdOk */ graphicFile?: string; /** * graphic_id integer * @type {number} * @memberof GetUniverseGraphicsGraphicIdOk */ graphicId: number; /** * icon_folder string * @type {string} * @memberof GetUniverseGraphicsGraphicIdOk */ iconFolder?: string; /** * sof_dna string * @type {string} * @memberof GetUniverseGraphicsGraphicIdOk */ sofDna?: string; /** * sof_fation_name string * @type {string} * @memberof GetUniverseGraphicsGraphicIdOk */ sofFationName?: string; /** * sof_hull_name string * @type {string} * @memberof GetUniverseGraphicsGraphicIdOk */ sofHullName?: string; /** * sof_race_name string * @type {string} * @memberof GetUniverseGraphicsGraphicIdOk */ sofRaceName?: string; } /** * Check if a given object implements the GetUniverseGraphicsGraphicIdOk interface. */ export declare function instanceOfGetUniverseGraphicsGraphicIdOk(value: object): value is GetUniverseGraphicsGraphicIdOk; export declare function GetUniverseGraphicsGraphicIdOkFromJSON(json: any): GetUniverseGraphicsGraphicIdOk; export declare function GetUniverseGraphicsGraphicIdOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUniverseGraphicsGraphicIdOk; export declare function GetUniverseGraphicsGraphicIdOkToJSON(json: any): GetUniverseGraphicsGraphicIdOk; export declare function GetUniverseGraphicsGraphicIdOkToJSONTyped(value?: GetUniverseGraphicsGraphicIdOk | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUniverseGraphicsGraphicIdOk.d.ts.map