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

com.google.api.services.integrations.v1alpha.model.EnterpriseCrmEventbusProtoNotification 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;

/**
 * Model definition for EnterpriseCrmEventbusProtoNotification.
 *
 * 

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 EnterpriseCrmEventbusProtoNotification extends com.google.api.client.json.GenericJson { /** * The value may be {@code null}. */ @com.google.api.client.util.Key private EnterpriseCrmEventbusProtoBuganizerNotification buganizerNotification; /** * The value may be {@code null}. */ @com.google.api.client.util.Key private EnterpriseCrmEventbusProtoAddress emailAddress; /** * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String escalatorQueue; /** * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String pubsubTopic; /** * If the out-of-the-box email/pubsub notifications are not suitable and custom logic is required, * fire a workflow containing all info needed to notify users to resume execution. * The value may be {@code null}. */ @com.google.api.client.util.Key private EnterpriseCrmEventbusProtoCustomSuspensionRequest request; /** * @return value or {@code null} for none */ public EnterpriseCrmEventbusProtoBuganizerNotification getBuganizerNotification() { return buganizerNotification; } /** * @param buganizerNotification buganizerNotification or {@code null} for none */ public EnterpriseCrmEventbusProtoNotification setBuganizerNotification(EnterpriseCrmEventbusProtoBuganizerNotification buganizerNotification) { this.buganizerNotification = buganizerNotification; return this; } /** * @return value or {@code null} for none */ public EnterpriseCrmEventbusProtoAddress getEmailAddress() { return emailAddress; } /** * @param emailAddress emailAddress or {@code null} for none */ public EnterpriseCrmEventbusProtoNotification setEmailAddress(EnterpriseCrmEventbusProtoAddress emailAddress) { this.emailAddress = emailAddress; return this; } /** * @return value or {@code null} for none */ public java.lang.String getEscalatorQueue() { return escalatorQueue; } /** * @param escalatorQueue escalatorQueue or {@code null} for none */ public EnterpriseCrmEventbusProtoNotification setEscalatorQueue(java.lang.String escalatorQueue) { this.escalatorQueue = escalatorQueue; return this; } /** * @return value or {@code null} for none */ public java.lang.String getPubsubTopic() { return pubsubTopic; } /** * @param pubsubTopic pubsubTopic or {@code null} for none */ public EnterpriseCrmEventbusProtoNotification setPubsubTopic(java.lang.String pubsubTopic) { this.pubsubTopic = pubsubTopic; return this; } /** * If the out-of-the-box email/pubsub notifications are not suitable and custom logic is required, * fire a workflow containing all info needed to notify users to resume execution. * @return value or {@code null} for none */ public EnterpriseCrmEventbusProtoCustomSuspensionRequest getRequest() { return request; } /** * If the out-of-the-box email/pubsub notifications are not suitable and custom logic is required, * fire a workflow containing all info needed to notify users to resume execution. * @param request request or {@code null} for none */ public EnterpriseCrmEventbusProtoNotification setRequest(EnterpriseCrmEventbusProtoCustomSuspensionRequest request) { this.request = request; return this; } @Override public EnterpriseCrmEventbusProtoNotification set(String fieldName, Object value) { return (EnterpriseCrmEventbusProtoNotification) super.set(fieldName, value); } @Override public EnterpriseCrmEventbusProtoNotification clone() { return (EnterpriseCrmEventbusProtoNotification) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy