UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
38 lines (37 loc) 1.02 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.18.6 * 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 AbcAPIErrorModel2 */ export interface AbcAPIErrorModel2 { /** * * @type {number} * @memberof AbcAPIErrorModel2 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel2 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel2 interface. */ export declare function instanceOfAbcAPIErrorModel2(value: object): boolean; export declare function AbcAPIErrorModel2FromJSON(json: any): AbcAPIErrorModel2; export declare function AbcAPIErrorModel2FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel2; export declare function AbcAPIErrorModel2ToJSON(value?: AbcAPIErrorModel2 | null): any;