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)

44 lines (43 loc) 1.1 kB
/* tslint:disable */ /* eslint-disable */ /** * 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. */ /** * Check if a given object implements the ErrorLimited interface. */ export function instanceOfErrorLimited(value) { if (!('error' in value) || value['error'] === undefined) return false; return true; } export function ErrorLimitedFromJSON(json) { return ErrorLimitedFromJSONTyped(json, false); } export function ErrorLimitedFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'error': json['error'], }; } export function ErrorLimitedToJSON(json) { return ErrorLimitedToJSONTyped(json, false); } export function ErrorLimitedToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'error': value['error'], }; }