All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.chat.v1.model.FormAction Maven / Gradle / Ivy

There is a newer version: v1-rev20241217-2.0.0
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.chat.v1.model;

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

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Google Chat API. For a detailed explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class FormAction extends com.google.api.client.json.GenericJson { /** * 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. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String actionMethodName; /** * List of action parameters. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List parameters; static { // hack to force ProGuard to consider ActionParameter used, since otherwise it would be stripped out // see https://github.com/google/google-api-java-client/issues/543 com.google.api.client.util.Data.nullOf(ActionParameter.class); } /** * 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. * @return value or {@code null} for none */ public java.lang.String getActionMethodName() { return 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. * @param actionMethodName actionMethodName or {@code null} for none */ public FormAction setActionMethodName(java.lang.String actionMethodName) { this.actionMethodName = actionMethodName; return this; } /** * List of action parameters. * @return value or {@code null} for none */ public java.util.List getParameters() { return parameters; } /** * List of action parameters. * @param parameters parameters or {@code null} for none */ public FormAction setParameters(java.util.List parameters) { this.parameters = parameters; return this; } @Override public FormAction set(String fieldName, Object value) { return (FormAction) super.set(fieldName, value); } @Override public FormAction clone() { return (FormAction) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy