Show / Hide Table of Contents

Class GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject

Response media object for media content card.

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

Properties

ContentUrl

Required. Url where the media is stored.

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

Description

Optional. Description of media 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

Icon

Optional. Icon to display above media content.

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

LargeImage

Optional. Image to display above media content.

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

Name

Required. Name of media card.

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

Implements

IDirectResponseSchema
In This Article
Back to top