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