Show / Hide Table of Contents

Class GoogleCloudDialogflowV2IntentMessageTableCard

Table card for Actions on Google.

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

Properties

Buttons

Optional. List of buttons for the card.

Declaration
[JsonProperty("buttons")]
public virtual IList<GoogleCloudDialogflowV2IntentMessageBasicCardButton> Buttons { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudDialogflowV2IntentMessageBasicCardButton>

ColumnProperties

Optional. Display properties for the columns in this table.

Declaration
[JsonProperty("columnProperties")]
public virtual IList<GoogleCloudDialogflowV2IntentMessageColumnProperties> ColumnProperties { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudDialogflowV2IntentMessageColumnProperties>

ETag

The ETag of the item.

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

Image

Optional. Image which should be displayed on the card.

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

Rows

Optional. Rows in this table of data.

Declaration
[JsonProperty("rows")]
public virtual IList<GoogleCloudDialogflowV2IntentMessageTableCardRow> Rows { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudDialogflowV2IntentMessageTableCardRow>

Subtitle

Optional. Subtitle to the title.

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

Title

Required. Title of the card.

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

Implements

IDirectResponseSchema
In This Article
Back to top