UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.17 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.21.1 * 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 AbcAPIErrorModel61 */ export interface AbcAPIErrorModel61 { /** * * @type {number} * @memberof AbcAPIErrorModel61 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel61 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel61 interface. */ export declare function instanceOfAbcAPIErrorModel61(value: object): value is AbcAPIErrorModel61; export declare function AbcAPIErrorModel61FromJSON(json: any): AbcAPIErrorModel61; export declare function AbcAPIErrorModel61FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel61; export declare function AbcAPIErrorModel61ToJSON(json: any): AbcAPIErrorModel61; export declare function AbcAPIErrorModel61ToJSONTyped(value?: AbcAPIErrorModel61 | null, ignoreDiscriminator?: boolean): any;