@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
46 lines (45 loc) • 1.65 kB
TypeScript
/**
* AskNews API
* AskNews API [](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 AnthropicThinkingDelta1
*/
export interface AnthropicThinkingDelta1 {
/**
*
* @type {string}
* @memberof AnthropicThinkingDelta1
*/
type?: AnthropicThinkingDelta1TypeEnum;
/**
*
* @type {string}
* @memberof AnthropicThinkingDelta1
*/
thinking: string;
}
/**
* @export
*/
export declare const AnthropicThinkingDelta1TypeEnum: {
readonly ThinkingDelta: "thinking_delta";
};
export type AnthropicThinkingDelta1TypeEnum = typeof AnthropicThinkingDelta1TypeEnum[keyof typeof AnthropicThinkingDelta1TypeEnum];
/**
* Check if a given object implements the AnthropicThinkingDelta1 interface.
*/
export declare function instanceOfAnthropicThinkingDelta1(value: object): value is AnthropicThinkingDelta1;
export declare function AnthropicThinkingDelta1FromJSON(json: any): AnthropicThinkingDelta1;
export declare function AnthropicThinkingDelta1FromJSONTyped(json: any, ignoreDiscriminator: boolean): AnthropicThinkingDelta1;
export declare function AnthropicThinkingDelta1ToJSON(json: any): AnthropicThinkingDelta1;
export declare function AnthropicThinkingDelta1ToJSONTyped(value?: AnthropicThinkingDelta1 | null, ignoreDiscriminator?: boolean): any;