Class GoogleCloudDialogflowV2beta1AnnotatedMessagePart
Represents a part of a message possibly annotated with an entity. The part can be an entity or purely a part of the message between two entities or message start/end.
Implements
Inherited Members
Namespace: Google.Apis.Dialogflow.v3beta1.Data
Assembly: Google.Apis.Dialogflow.v3beta1.dll
Syntax
public class GoogleCloudDialogflowV2beta1AnnotatedMessagePart : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EntityType
Optional. The Dialogflow system entity type of this message part. If this is empty, Dialogflow could not annotate the phrase part with a system entity.
Declaration
[JsonProperty("entityType")]
public virtual string EntityType { get; set; }
Property Value
Type | Description |
---|---|
string |
FormattedValue
Optional. The Dialogflow system entity formatted value of this message part. For example for
a system entity of type @sys.unit-currency
, this may contain: { "amount": 5, "currency": "USD" }
Declaration
[JsonProperty("formattedValue")]
public virtual object FormattedValue { get; set; }
Property Value
Type | Description |
---|---|
object |
Text
Required. A part of a message possibly annotated with an entity.
Declaration
[JsonProperty("text")]
public virtual string Text { get; set; }
Property Value
Type | Description |
---|---|
string |