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 Google Cloud Translate V3, is a sealed class inheriting from `object` and implementing several interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`."],["This class is found within the `Google.Cloud.Translate.V3` namespace and the `Google.Cloud.Translate.V3.dll` assembly."],["`TranslateTextResponse` objects can be constructed using a default constructor or a constructor that accepts another `TranslateTextResponse` object for cloning."],["The class provides two main properties: `GlossaryTranslations` and `Translations`, both of which are `RepeatedField` collections of `Translation` objects, representing text translation responses with and without glossary application, respectively."],["Version 3.9.0 is the most recent version, with all the way back to version 2.2.0 being documented as well."]]],[]]