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
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class AppsDynamiteStorageAction : IDirectResponseSchema
Properties
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
Function
Apps Script function to invoke when the containing element is clicked/activated.
Declaration
[JsonProperty("function")]
public virtual string Function { get; set; }
Property Value
Interaction
Declaration
[JsonProperty("interaction")]
public virtual string Interaction { get; set; }
Property Value
LoadIndicator
Declaration
[JsonProperty("loadIndicator")]
public virtual string LoadIndicator { get; set; }
Property Value
Parameters
List of action parameters.
Declaration
[JsonProperty("parameters")]
public virtual IList<AppsDynamiteStorageActionActionParameter> Parameters { get; set; }
Property Value
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
Implements