public sealed class TranslateTextResponse : IMessage<TranslateTextResponse>, IEquatable<TranslateTextResponse>, IDeepCloneable<TranslateTextResponse>, IBufferMessage, IMessage
public RepeatedField<Translation> GlossaryTranslations { get; }
Text translation responses if a glossary is provided in the request.
This can be the same as
[translations][google.cloud.translation.v3.TranslateTextResponse.translations]
if no terms apply. This field has the same length as
[contents][google.cloud.translation.v3.TranslateTextRequest.contents].
public RepeatedField<Translation> Translations { get; }
Text translation responses with no glossary applied.
This field has the same length as
[contents][google.cloud.translation.v3.TranslateTextRequest.contents].
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The `TranslateTextResponse` class, part of the Google.Cloud.Translate.V3 namespace, provides the structure for text translation results, and is found within the Google.Cloud.Translate.V3.dll assembly."],["Version 3.9.0 is the latest, while the list of available versions includes versions ranging from 3.9.0 all the way to version 2.2.0 for the Google Cloud Translate service."],["The `TranslateTextResponse` class implements several interfaces, including IMessage, IEquatable, IDeepCloneable, and IBufferMessage, showcasing its capabilities for handling message-based data structures."],["The class offers two properties, `GlossaryTranslations` and `Translations`, both of which are of type `RepeatedField\u003cTranslation\u003e`, to store translation outputs with and without glossary application, respectively."],["There are two constructors available for `TranslateTextResponse`: a default constructor and one that takes another `TranslateTextResponse` object as a parameter for creating a new instance based on an existing one."]]],[]]