@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
33 lines • 1.02 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.
*/
/**
* Bad request model
* @export
* @interface BadRequest
*/
export interface BadRequest {
/**
* Bad request message
* @type {string}
* @memberof BadRequest
*/
error: string;
}
/**
* Check if a given object implements the BadRequest interface.
*/
export declare function instanceOfBadRequest(value: object): value is BadRequest;
export declare function BadRequestFromJSON(json: any): BadRequest;
export declare function BadRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BadRequest;
export declare function BadRequestToJSON(json: any): BadRequest;
export declare function BadRequestToJSONTyped(value?: BadRequest | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=BadRequest.d.ts.map