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 AbcAPIErrorModel67 */ export interface AbcAPIErrorModel67 { /** * * @type {number} * @memberof AbcAPIErrorModel67 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel67 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel67 interface. */ export declare function instanceOfAbcAPIErrorModel67(value: object): value is AbcAPIErrorModel67; export declare function AbcAPIErrorModel67FromJSON(json: any): AbcAPIErrorModel67; export declare function AbcAPIErrorModel67FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel67; export declare function AbcAPIErrorModel67ToJSON(json: any): AbcAPIErrorModel67; export declare function AbcAPIErrorModel67ToJSONTyped(value?: AbcAPIErrorModel67 | null, ignoreDiscriminator?: boolean): any;