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 AbcAPIErrorModel49 */ export interface AbcAPIErrorModel49 { /** * * @type {number} * @memberof AbcAPIErrorModel49 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel49 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel49 interface. */ export declare function instanceOfAbcAPIErrorModel49(value: object): value is AbcAPIErrorModel49; export declare function AbcAPIErrorModel49FromJSON(json: any): AbcAPIErrorModel49; export declare function AbcAPIErrorModel49FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel49; export declare function AbcAPIErrorModel49ToJSON(json: any): AbcAPIErrorModel49; export declare function AbcAPIErrorModel49ToJSONTyped(value?: AbcAPIErrorModel49 | null, ignoreDiscriminator?: boolean): any;