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 AbcAPIErrorModel26 */ export interface AbcAPIErrorModel26 { /** * * @type {number} * @memberof AbcAPIErrorModel26 */ code: number; /** * * @type {string} * @memberof AbcAPIErrorModel26 */ detail: string; } /** * Check if a given object implements the AbcAPIErrorModel26 interface. */ export declare function instanceOfAbcAPIErrorModel26(value: object): value is AbcAPIErrorModel26; export declare function AbcAPIErrorModel26FromJSON(json: any): AbcAPIErrorModel26; export declare function AbcAPIErrorModel26FromJSONTyped(json: any, ignoreDiscriminator: boolean): AbcAPIErrorModel26; export declare function AbcAPIErrorModel26ToJSON(json: any): AbcAPIErrorModel26; export declare function AbcAPIErrorModel26ToJSONTyped(value?: AbcAPIErrorModel26 | null, ignoreDiscriminator?: boolean): any;