@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
58 lines • 2.15 kB
TypeScript
/**
* EVE Swagger Interface
* An OpenAPI for EVE Online
*
* The version of the OpenAPI document: 1.36
*
*
* 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 { GetUniverseStructuresStructureIdPosition } from './GetUniverseStructuresStructureIdPosition';
/**
* 200 ok object
* @export
* @interface GetUniverseStructuresStructureIdOk
*/
export interface GetUniverseStructuresStructureIdOk {
/**
* The full name of the structure
* @type {string}
* @memberof GetUniverseStructuresStructureIdOk
*/
name: string;
/**
* The ID of the corporation who owns this particular structure
* @type {number}
* @memberof GetUniverseStructuresStructureIdOk
*/
ownerId: number;
/**
*
* @type {GetUniverseStructuresStructureIdPosition}
* @memberof GetUniverseStructuresStructureIdOk
*/
position?: GetUniverseStructuresStructureIdPosition;
/**
* solar_system_id integer
* @type {number}
* @memberof GetUniverseStructuresStructureIdOk
*/
solarSystemId: number;
/**
* type_id integer
* @type {number}
* @memberof GetUniverseStructuresStructureIdOk
*/
typeId?: number;
}
/**
* Check if a given object implements the GetUniverseStructuresStructureIdOk interface.
*/
export declare function instanceOfGetUniverseStructuresStructureIdOk(value: object): value is GetUniverseStructuresStructureIdOk;
export declare function GetUniverseStructuresStructureIdOkFromJSON(json: any): GetUniverseStructuresStructureIdOk;
export declare function GetUniverseStructuresStructureIdOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUniverseStructuresStructureIdOk;
export declare function GetUniverseStructuresStructureIdOkToJSON(json: any): GetUniverseStructuresStructureIdOk;
export declare function GetUniverseStructuresStructureIdOkToJSONTyped(value?: GetUniverseStructuresStructureIdOk | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetUniverseStructuresStructureIdOk.d.ts.map