Show / Hide Table of Contents

Class FormAction

A form action describes the behavior when the form is submitted. For example, you can invoke Apps Script to handle the form.

Inheritance
object
FormAction
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.HangoutsChat.v1.Data
Assembly: Google.Apis.HangoutsChat.v1.dll
Syntax
public class FormAction : IDirectResponseSchema

Properties

ActionMethodName

The method name is used to identify which part of the form triggered the form submission. This information is echoed back to the Chat app as part of the card click event. You can use the same method name for several elements that trigger a common behavior.

Declaration
[JsonProperty("actionMethodName")]
public virtual string ActionMethodName { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

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

Parameters

List of action parameters.

Declaration
[JsonProperty("parameters")]
public virtual IList<ActionParameter> Parameters { get; set; }
Property Value
Type Description
IList<ActionParameter>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX