@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
39 lines • 1.23 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.
*/
/**
* Gateway timeout model
* @export
* @interface GatewayTimeout
*/
export interface GatewayTimeout {
/**
* Gateway timeout message
* @type {string}
* @memberof GatewayTimeout
*/
error: string;
/**
* number of seconds the request was given
* @type {number}
* @memberof GatewayTimeout
*/
timeout?: number;
}
/**
* Check if a given object implements the GatewayTimeout interface.
*/
export declare function instanceOfGatewayTimeout(value: object): value is GatewayTimeout;
export declare function GatewayTimeoutFromJSON(json: any): GatewayTimeout;
export declare function GatewayTimeoutFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewayTimeout;
export declare function GatewayTimeoutToJSON(json: any): GatewayTimeout;
export declare function GatewayTimeoutToJSONTyped(value?: GatewayTimeout | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GatewayTimeout.d.ts.map