Show / Hide Table of Contents

Class AppsDynamiteSharedAction

An action that describes the behavior when the form is submitted. For example, an Apps Script can be invoked to handle the form.

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

Properties

ETag

The ETag of the item.

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

Function

Apps Script function to invoke when the containing element is clicked/activated.

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

Interaction

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

LoadIndicator

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

Parameters

List of action parameters.

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

Implements

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