UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
46 lines (45 loc) 1.66 kB
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.66 * 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 AnthropicInputJsonDelta */ export interface AnthropicInputJsonDelta { /** * * @type {string} * @memberof AnthropicInputJsonDelta */ type?: AnthropicInputJsonDeltaTypeEnum; /** * * @type {string} * @memberof AnthropicInputJsonDelta */ partialJson: string; } /** * @export */ export declare const AnthropicInputJsonDeltaTypeEnum: { readonly InputJsonDelta: "input_json_delta"; }; export type AnthropicInputJsonDeltaTypeEnum = typeof AnthropicInputJsonDeltaTypeEnum[keyof typeof AnthropicInputJsonDeltaTypeEnum]; /** * Check if a given object implements the AnthropicInputJsonDelta interface. */ export declare function instanceOfAnthropicInputJsonDelta(value: object): value is AnthropicInputJsonDelta; export declare function AnthropicInputJsonDeltaFromJSON(json: any): AnthropicInputJsonDelta; export declare function AnthropicInputJsonDeltaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnthropicInputJsonDelta; export declare function AnthropicInputJsonDeltaToJSON(json: any): AnthropicInputJsonDelta; export declare function AnthropicInputJsonDeltaToJSONTyped(value?: AnthropicInputJsonDelta | null, ignoreDiscriminator?: boolean): any;