Show / Hide Table of Contents

Class GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent

Rich Business Messaging (RBM) Card content

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

Properties

Description

Optional. Description of the card (at most 2000 bytes). At least one of the title, description or media must be set.

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

Media

Optional. However at least one of the title, description or media must be set. Media (image, GIF or a video) to include in the card.

Declaration
[JsonProperty("media")]
public virtual GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia Media { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia

Suggestions

Optional. List of suggestions to include in the card.

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

Title

Optional. Title of the card (at most 200 bytes). At least one of the title, description or media must be set.

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

Implements

IDirectResponseSchema
In This Article
Back to top