Show / Hide Table of Contents

Class GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem

An item in the carousel.

Inheritance
System.Object
GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dialogflow.v2.Data
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem : IDirectResponseSchema

Properties

Description

Optional. The body text of the card.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Image

Optional. The image to display.

Declaration
[JsonProperty("image")]
public virtual GoogleCloudDialogflowV2beta1IntentMessageImage Image { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2beta1IntentMessageImage

Info

Required. Additional info about the option item.

Declaration
[JsonProperty("info")]
public virtual GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo Info { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo

Title

Required. Title of the carousel item.

Declaration
[JsonProperty("title")]
public virtual string Title { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top