@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
46 lines (45 loc) • 1.62 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 AnthropicThinkingBlock
*/
export interface AnthropicThinkingBlock {
/**
*
* @type {string}
* @memberof AnthropicThinkingBlock
*/
type?: AnthropicThinkingBlockTypeEnum;
/**
*
* @type {string}
* @memberof AnthropicThinkingBlock
*/
thinking?: string;
}
/**
* @export
*/
export declare const AnthropicThinkingBlockTypeEnum: {
readonly Thinking: "thinking";
};
export type AnthropicThinkingBlockTypeEnum = typeof AnthropicThinkingBlockTypeEnum[keyof typeof AnthropicThinkingBlockTypeEnum];
/**
* Check if a given object implements the AnthropicThinkingBlock interface.
*/
export declare function instanceOfAnthropicThinkingBlock(value: object): value is AnthropicThinkingBlock;
export declare function AnthropicThinkingBlockFromJSON(json: any): AnthropicThinkingBlock;
export declare function AnthropicThinkingBlockFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnthropicThinkingBlock;
export declare function AnthropicThinkingBlockToJSON(json: any): AnthropicThinkingBlock;
export declare function AnthropicThinkingBlockToJSONTyped(value?: AnthropicThinkingBlock | null, ignoreDiscriminator?: boolean): any;