@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
33 lines • 1.18 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.
*/
/**
* Internal server error model
* @export
* @interface InternalServerError
*/
export interface InternalServerError {
/**
* Internal server error message
* @type {string}
* @memberof InternalServerError
*/
error: string;
}
/**
* Check if a given object implements the InternalServerError interface.
*/
export declare function instanceOfInternalServerError(value: object): value is InternalServerError;
export declare function InternalServerErrorFromJSON(json: any): InternalServerError;
export declare function InternalServerErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): InternalServerError;
export declare function InternalServerErrorToJSON(json: any): InternalServerError;
export declare function InternalServerErrorToJSONTyped(value?: InternalServerError | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=InternalServerError.d.ts.map