@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
45 lines • 1.46 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.
*/
/**
* level object
* @export
* @interface GetInsurancePricesLevel
*/
export interface GetInsurancePricesLevel {
/**
* cost number
* @type {number}
* @memberof GetInsurancePricesLevel
*/
cost: number;
/**
* Localized insurance level
* @type {string}
* @memberof GetInsurancePricesLevel
*/
name: string;
/**
* payout number
* @type {number}
* @memberof GetInsurancePricesLevel
*/
payout: number;
}
/**
* Check if a given object implements the GetInsurancePricesLevel interface.
*/
export declare function instanceOfGetInsurancePricesLevel(value: object): value is GetInsurancePricesLevel;
export declare function GetInsurancePricesLevelFromJSON(json: any): GetInsurancePricesLevel;
export declare function GetInsurancePricesLevelFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetInsurancePricesLevel;
export declare function GetInsurancePricesLevelToJSON(json: any): GetInsurancePricesLevel;
export declare function GetInsurancePricesLevelToJSONTyped(value?: GetInsurancePricesLevel | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetInsurancePricesLevel.d.ts.map