UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
46 lines (45 loc) 1.68 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 AnthropicInputJsonDelta1 */ export interface AnthropicInputJsonDelta1 { /** * * @type {string} * @memberof AnthropicInputJsonDelta1 */ type?: AnthropicInputJsonDelta1TypeEnum; /** * * @type {string} * @memberof AnthropicInputJsonDelta1 */ partialJson: string; } /** * @export */ export declare const AnthropicInputJsonDelta1TypeEnum: { readonly InputJsonDelta: "input_json_delta"; }; export type AnthropicInputJsonDelta1TypeEnum = typeof AnthropicInputJsonDelta1TypeEnum[keyof typeof AnthropicInputJsonDelta1TypeEnum]; /** * Check if a given object implements the AnthropicInputJsonDelta1 interface. */ export declare function instanceOfAnthropicInputJsonDelta1(value: object): value is AnthropicInputJsonDelta1; export declare function AnthropicInputJsonDelta1FromJSON(json: any): AnthropicInputJsonDelta1; export declare function AnthropicInputJsonDelta1FromJSONTyped(json: any, ignoreDiscriminator: boolean): AnthropicInputJsonDelta1; export declare function AnthropicInputJsonDelta1ToJSON(json: any): AnthropicInputJsonDelta1; export declare function AnthropicInputJsonDelta1ToJSONTyped(value?: AnthropicInputJsonDelta1 | null, ignoreDiscriminator?: boolean): any;