UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
52 lines (51 loc) 1.47 kB
/* tslint:disable */ /* eslint-disable */ /** * 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 */ export const AnthropicTextDelta1TypeEnum = { TextDelta: 'text_delta' }; /** * Check if a given object implements the AnthropicTextDelta1 interface. */ export function instanceOfAnthropicTextDelta1(value) { if (!('text' in value) || value['text'] === undefined) return false; return true; } export function AnthropicTextDelta1FromJSON(json) { return AnthropicTextDelta1FromJSONTyped(json, false); } export function AnthropicTextDelta1FromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'type': json['type'] == null ? undefined : json['type'], 'text': json['text'], }; } export function AnthropicTextDelta1ToJSON(json) { return AnthropicTextDelta1ToJSONTyped(json, false); } export function AnthropicTextDelta1ToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'type': value['type'], 'text': value['text'], }; }