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 AbcAPIErrorModel27 */ export interface AbcAPIErrorModel27 { /** * * @type {number} * @memberof AbcAPIErrorModel27 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel27 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel27 interface. */ export declare function instanceOfAbcAPIErrorModel27(value: object): value is AbcAPIErrorModel27; export declare function AbcAPIErrorModel27FromJSON(json: any): AbcAPIErrorModel27; export declare function AbcAPIErrorModel27FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel27; export declare function AbcAPIErrorModel27ToJSON(json: any): AbcAPIErrorModel27; export declare function AbcAPIErrorModel27ToJSONTyped(value?: AbcAPIErrorModel27 | null, ignoreDiscriminator?: boolean): any;