@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
42 lines (41 loc) • 1.2 kB
JavaScript
/* 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 GetDogmaEffectsEffectIdNotFound interface.
*/
export function instanceOfGetDogmaEffectsEffectIdNotFound(value) {
return true;
}
export function GetDogmaEffectsEffectIdNotFoundFromJSON(json) {
return GetDogmaEffectsEffectIdNotFoundFromJSONTyped(json, false);
}
export function GetDogmaEffectsEffectIdNotFoundFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'error': json['error'] == null ? undefined : json['error'],
};
}
export function GetDogmaEffectsEffectIdNotFoundToJSON(json) {
return GetDogmaEffectsEffectIdNotFoundToJSONTyped(json, false);
}
export function GetDogmaEffectsEffectIdNotFoundToJSONTyped(value, ignoreDiscriminator = false) {
if (value == null) {
return value;
}
return {
'error': value['error'],
};
}