@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
47 lines • 2.11 kB
TypeScript
/**
* 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.
*/
/**
* home_location object
* @export
* @interface GetCharactersCharacterIdClonesHomeLocation
*/
export interface GetCharactersCharacterIdClonesHomeLocation {
/**
* location_id integer
* @type {number}
* @memberof GetCharactersCharacterIdClonesHomeLocation
*/
locationId?: number;
/**
* location_type string
* @type {string}
* @memberof GetCharactersCharacterIdClonesHomeLocation
*/
locationType?: GetCharactersCharacterIdClonesHomeLocationLocationTypeEnum;
}
/**
* @export
*/
export declare const GetCharactersCharacterIdClonesHomeLocationLocationTypeEnum: {
readonly Station: "station";
readonly Structure: "structure";
};
export type GetCharactersCharacterIdClonesHomeLocationLocationTypeEnum = typeof GetCharactersCharacterIdClonesHomeLocationLocationTypeEnum[keyof typeof GetCharactersCharacterIdClonesHomeLocationLocationTypeEnum];
/**
* Check if a given object implements the GetCharactersCharacterIdClonesHomeLocation interface.
*/
export declare function instanceOfGetCharactersCharacterIdClonesHomeLocation(value: object): value is GetCharactersCharacterIdClonesHomeLocation;
export declare function GetCharactersCharacterIdClonesHomeLocationFromJSON(json: any): GetCharactersCharacterIdClonesHomeLocation;
export declare function GetCharactersCharacterIdClonesHomeLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdClonesHomeLocation;
export declare function GetCharactersCharacterIdClonesHomeLocationToJSON(json: any): GetCharactersCharacterIdClonesHomeLocation;
export declare function GetCharactersCharacterIdClonesHomeLocationToJSONTyped(value?: GetCharactersCharacterIdClonesHomeLocation | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdClonesHomeLocation.d.ts.map