@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
55 lines • 2.19 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.
*/
/**
* cost_indice object
* @export
* @interface GetIndustrySystemsCostIndice
*/
export interface GetIndustrySystemsCostIndice {
/**
* activity string
* @type {string}
* @memberof GetIndustrySystemsCostIndice
*/
activity: GetIndustrySystemsCostIndiceActivityEnum;
/**
* cost_index number
* @type {number}
* @memberof GetIndustrySystemsCostIndice
*/
costIndex: number;
}
/**
* @export
*/
export declare const GetIndustrySystemsCostIndiceActivityEnum: {
readonly Copying: "copying";
readonly Duplicating: "duplicating";
readonly Invention: "invention";
readonly Manufacturing: "manufacturing";
readonly None: "none";
readonly Reaction: "reaction";
readonly ResearchingMaterialEfficiency: "researching_material_efficiency";
readonly ResearchingTechnology: "researching_technology";
readonly ResearchingTimeEfficiency: "researching_time_efficiency";
readonly ReverseEngineering: "reverse_engineering";
};
export type GetIndustrySystemsCostIndiceActivityEnum = typeof GetIndustrySystemsCostIndiceActivityEnum[keyof typeof GetIndustrySystemsCostIndiceActivityEnum];
/**
* Check if a given object implements the GetIndustrySystemsCostIndice interface.
*/
export declare function instanceOfGetIndustrySystemsCostIndice(value: object): value is GetIndustrySystemsCostIndice;
export declare function GetIndustrySystemsCostIndiceFromJSON(json: any): GetIndustrySystemsCostIndice;
export declare function GetIndustrySystemsCostIndiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetIndustrySystemsCostIndice;
export declare function GetIndustrySystemsCostIndiceToJSON(json: any): GetIndustrySystemsCostIndice;
export declare function GetIndustrySystemsCostIndiceToJSONTyped(value?: GetIndustrySystemsCostIndice | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetIndustrySystemsCostIndice.d.ts.map