Show / Hide Table of Contents

Class GoogleChatV1WidgetMarkupFormActionActionParameter

List of string parameters to supply when the action method is invoked. For example, consider three snooze buttons: snooze now, snooze 1 day, snooze next week. You might use action method = snooze(), passing the snooze type and snooze time in the list of string parameters.

Inheritance
System.Object
GoogleChatV1WidgetMarkupFormActionActionParameter
Implements
Google.Apis.Requests.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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class GoogleChatV1WidgetMarkupFormActionActionParameter : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Key

The name of the parameter for the action script.

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

Value

The value of the parameter.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top