UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
60 lines (59 loc) 2.08 kB
"use strict"; /* 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.AnthropicTextDeltaToJSONTyped = exports.AnthropicTextDeltaToJSON = exports.AnthropicTextDeltaFromJSONTyped = exports.AnthropicTextDeltaFromJSON = exports.instanceOfAnthropicTextDelta = exports.AnthropicTextDeltaTypeEnum = void 0; /** * @export */ exports.AnthropicTextDeltaTypeEnum = { TextDelta: 'text_delta' }; /** * Check if a given object implements the AnthropicTextDelta interface. */ function instanceOfAnthropicTextDelta(value) { if (!('text' in value) || value['text'] === undefined) return false; return true; } exports.instanceOfAnthropicTextDelta = instanceOfAnthropicTextDelta; function AnthropicTextDeltaFromJSON(json) { return AnthropicTextDeltaFromJSONTyped(json, false); } exports.AnthropicTextDeltaFromJSON = AnthropicTextDeltaFromJSON; function AnthropicTextDeltaFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'type': json['type'] == null ? undefined : json['type'], 'text': json['text'], }; } exports.AnthropicTextDeltaFromJSONTyped = AnthropicTextDeltaFromJSONTyped; function AnthropicTextDeltaToJSON(json) { return AnthropicTextDeltaToJSONTyped(json, false); } exports.AnthropicTextDeltaToJSON = AnthropicTextDeltaToJSON; function AnthropicTextDeltaToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'type': value['type'], 'text': value['text'], }; } exports.AnthropicTextDeltaToJSONTyped = AnthropicTextDeltaToJSONTyped;