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 AbcAPIErrorModel57 */ export interface AbcAPIErrorModel57 { /** * * @type {number} * @memberof AbcAPIErrorModel57 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel57 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel57 interface. */ export declare function instanceOfAbcAPIErrorModel57(value: object): value is AbcAPIErrorModel57; export declare function AbcAPIErrorModel57FromJSON(json: any): AbcAPIErrorModel57; export declare function AbcAPIErrorModel57FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel57; export declare function AbcAPIErrorModel57ToJSON(json: any): AbcAPIErrorModel57; export declare function AbcAPIErrorModel57ToJSONTyped(value?: AbcAPIErrorModel57 | null, ignoreDiscriminator?: boolean): any;