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

com.google.api.services.integrations.v1alpha.model.EnterpriseCrmFrontendsEventbusProtoTaskEntity Maven / Gradle / Ivy

/*
 * 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.integrations.v1alpha.model;

/**
 * Contains a task's metadata and associated information. Next available id: 7
 *
 * 

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 Application Integration 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 EnterpriseCrmFrontendsEventbusProtoTaskEntity extends com.google.api.client.json.GenericJson { /** * True if the task has conflict with vpcsc * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean disabledForVpcSc; /** * Metadata inclueds the task name, author and so on. * The value may be {@code null}. */ @com.google.api.client.util.Key private EnterpriseCrmEventbusProtoTaskMetadata metadata; /** * Declarations for inputs/outputs for a TypedTask. This is also associated with the METADATA * mask. * The value may be {@code null}. */ @com.google.api.client.util.Key private EnterpriseCrmFrontendsEventbusProtoParamSpecsMessage paramSpecs; /** * Deprecated - statistics from the Monarch query. * The value may be {@code null}. */ @com.google.api.client.util.Key private EnterpriseCrmEventbusStats stats; /** * Defines the type of the task * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String taskType; /** * UI configuration for this task Also associated with the METADATA mask. * The value may be {@code null}. */ @com.google.api.client.util.Key private EnterpriseCrmEventbusProtoTaskUiConfig uiConfig; /** * True if the task has conflict with vpcsc * @return value or {@code null} for none */ public java.lang.Boolean getDisabledForVpcSc() { return disabledForVpcSc; } /** * True if the task has conflict with vpcsc * @param disabledForVpcSc disabledForVpcSc or {@code null} for none */ public EnterpriseCrmFrontendsEventbusProtoTaskEntity setDisabledForVpcSc(java.lang.Boolean disabledForVpcSc) { this.disabledForVpcSc = disabledForVpcSc; return this; } /** * Metadata inclueds the task name, author and so on. * @return value or {@code null} for none */ public EnterpriseCrmEventbusProtoTaskMetadata getMetadata() { return metadata; } /** * Metadata inclueds the task name, author and so on. * @param metadata metadata or {@code null} for none */ public EnterpriseCrmFrontendsEventbusProtoTaskEntity setMetadata(EnterpriseCrmEventbusProtoTaskMetadata metadata) { this.metadata = metadata; return this; } /** * Declarations for inputs/outputs for a TypedTask. This is also associated with the METADATA * mask. * @return value or {@code null} for none */ public EnterpriseCrmFrontendsEventbusProtoParamSpecsMessage getParamSpecs() { return paramSpecs; } /** * Declarations for inputs/outputs for a TypedTask. This is also associated with the METADATA * mask. * @param paramSpecs paramSpecs or {@code null} for none */ public EnterpriseCrmFrontendsEventbusProtoTaskEntity setParamSpecs(EnterpriseCrmFrontendsEventbusProtoParamSpecsMessage paramSpecs) { this.paramSpecs = paramSpecs; return this; } /** * Deprecated - statistics from the Monarch query. * @return value or {@code null} for none */ public EnterpriseCrmEventbusStats getStats() { return stats; } /** * Deprecated - statistics from the Monarch query. * @param stats stats or {@code null} for none */ public EnterpriseCrmFrontendsEventbusProtoTaskEntity setStats(EnterpriseCrmEventbusStats stats) { this.stats = stats; return this; } /** * Defines the type of the task * @return value or {@code null} for none */ public java.lang.String getTaskType() { return taskType; } /** * Defines the type of the task * @param taskType taskType or {@code null} for none */ public EnterpriseCrmFrontendsEventbusProtoTaskEntity setTaskType(java.lang.String taskType) { this.taskType = taskType; return this; } /** * UI configuration for this task Also associated with the METADATA mask. * @return value or {@code null} for none */ public EnterpriseCrmEventbusProtoTaskUiConfig getUiConfig() { return uiConfig; } /** * UI configuration for this task Also associated with the METADATA mask. * @param uiConfig uiConfig or {@code null} for none */ public EnterpriseCrmFrontendsEventbusProtoTaskEntity setUiConfig(EnterpriseCrmEventbusProtoTaskUiConfig uiConfig) { this.uiConfig = uiConfig; return this; } @Override public EnterpriseCrmFrontendsEventbusProtoTaskEntity set(String fieldName, Object value) { return (EnterpriseCrmFrontendsEventbusProtoTaskEntity) super.set(fieldName, value); } @Override public EnterpriseCrmFrontendsEventbusProtoTaskEntity clone() { return (EnterpriseCrmFrontendsEventbusProtoTaskEntity) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy