UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
46 lines (45 loc) 1.64 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 AnthropicThinkingBlock1 */ export interface AnthropicThinkingBlock1 { /** * * @type {string} * @memberof AnthropicThinkingBlock1 */ type?: AnthropicThinkingBlock1TypeEnum; /** * * @type {string} * @memberof AnthropicThinkingBlock1 */ thinking?: string; } /** * @export */ export declare const AnthropicThinkingBlock1TypeEnum: { readonly Thinking: "thinking"; }; export type AnthropicThinkingBlock1TypeEnum = typeof AnthropicThinkingBlock1TypeEnum[keyof typeof AnthropicThinkingBlock1TypeEnum]; /** * Check if a given object implements the AnthropicThinkingBlock1 interface. */ export declare function instanceOfAnthropicThinkingBlock1(value: object): value is AnthropicThinkingBlock1; export declare function AnthropicThinkingBlock1FromJSON(json: any): AnthropicThinkingBlock1; export declare function AnthropicThinkingBlock1FromJSONTyped(json: any, ignoreDiscriminator: boolean): AnthropicThinkingBlock1; export declare function AnthropicThinkingBlock1ToJSON(json: any): AnthropicThinkingBlock1; export declare function AnthropicThinkingBlock1ToJSONTyped(value?: AnthropicThinkingBlock1 | null, ignoreDiscriminator?: boolean): any;