Show / Hide Table of Contents

Class GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem

Browsing carousel tile

Inheritance
System.Object
GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem
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 GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem : IDirectResponseSchema

Properties

Description

Optional. Description of the carousel item. Maximum of four lines of text.

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

Footer

Optional. Text that appears at the bottom of the Browse Carousel Card. Maximum of one line of text.

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

Image

Optional. Hero image for the carousel item.

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

OpenUriAction

Required. Action to present to the user.

Declaration
[JsonProperty("openUriAction")]
public virtual GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction OpenUriAction { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction

Title

Required. Title of the carousel item. Maximum of two lines of text.

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

Implements

IDirectResponseSchema
In This Article
Back to top