Show / Hide Table of Contents

Class AppsDynamiteStorageAction

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

Inheritance
object
AppsDynamiteStorageAction
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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class AppsDynamiteStorageAction : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
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
string

Interaction

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

LoadIndicator

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

Parameters

List of action parameters.

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

PersistValues

Indicates whether form values persist after the action. The default value is false. If true, form values remain after the action is triggered. When using LoadIndicator.NONE for actions, persist_values = trueis recommended, as it ensures that any changes made by the user after form or on change actions are sent to the server are not overwritten by the response. If false, the form values are cleared when the action is triggered. When persist_values is set to false, it is strongly recommended that the card use LoadIndicator.SPINNER for all actions, as this locks the UI to ensure no changes are made by the user while the action is being processed.

Declaration
[JsonProperty("persistValues")]
public virtual bool? PersistValues { get; set; }
Property Value
Type Description
bool?

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX