UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.31 kB
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.66 * Contact: contact@emergentmethods.ai * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface AbcAPIErrorModel109 */ export interface AbcAPIErrorModel109 { /** * * @type {number} * @memberof AbcAPIErrorModel109 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel109 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel109 interface. */ export declare function instanceOfAbcAPIErrorModel109(value: object): value is AbcAPIErrorModel109; export declare function AbcAPIErrorModel109FromJSON(json: any): AbcAPIErrorModel109; export declare function AbcAPIErrorModel109FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel109; export declare function AbcAPIErrorModel109ToJSON(json: any): AbcAPIErrorModel109; export declare function AbcAPIErrorModel109ToJSONTyped(value?: AbcAPIErrorModel109 | null, ignoreDiscriminator?: boolean): any;