UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.29 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.22 * 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 AbcAPIErrorModel85 */ export interface AbcAPIErrorModel85 { /** * * @type {number} * @memberof AbcAPIErrorModel85 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel85 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel85 interface. */ export declare function instanceOfAbcAPIErrorModel85(value: object): value is AbcAPIErrorModel85; export declare function AbcAPIErrorModel85FromJSON(json: any): AbcAPIErrorModel85; export declare function AbcAPIErrorModel85FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel85; export declare function AbcAPIErrorModel85ToJSON(json: any): AbcAPIErrorModel85; export declare function AbcAPIErrorModel85ToJSONTyped(value?: AbcAPIErrorModel85 | null, ignoreDiscriminator?: boolean): any;