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

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

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 EnterpriseCrmEventbusProtoBuganizerNotification extends com.google.api.client.json.GenericJson { /** * Whom to assign the new bug. Optional. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String assigneeEmailAddress; /** * ID of the buganizer component within which to create a new issue. Required. * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long componentId; /** * ID of the buganizer template to use. Optional. * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long templateId; /** * Title of the issue to be created. Required. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String title; /** * Whom to assign the new bug. Optional. * @return value or {@code null} for none */ public java.lang.String getAssigneeEmailAddress() { return assigneeEmailAddress; } /** * Whom to assign the new bug. Optional. * @param assigneeEmailAddress assigneeEmailAddress or {@code null} for none */ public EnterpriseCrmEventbusProtoBuganizerNotification setAssigneeEmailAddress(java.lang.String assigneeEmailAddress) { this.assigneeEmailAddress = assigneeEmailAddress; return this; } /** * ID of the buganizer component within which to create a new issue. Required. * @return value or {@code null} for none */ public java.lang.Long getComponentId() { return componentId; } /** * ID of the buganizer component within which to create a new issue. Required. * @param componentId componentId or {@code null} for none */ public EnterpriseCrmEventbusProtoBuganizerNotification setComponentId(java.lang.Long componentId) { this.componentId = componentId; return this; } /** * ID of the buganizer template to use. Optional. * @return value or {@code null} for none */ public java.lang.Long getTemplateId() { return templateId; } /** * ID of the buganizer template to use. Optional. * @param templateId templateId or {@code null} for none */ public EnterpriseCrmEventbusProtoBuganizerNotification setTemplateId(java.lang.Long templateId) { this.templateId = templateId; return this; } /** * Title of the issue to be created. Required. * @return value or {@code null} for none */ public java.lang.String getTitle() { return title; } /** * Title of the issue to be created. Required. * @param title title or {@code null} for none */ public EnterpriseCrmEventbusProtoBuganizerNotification setTitle(java.lang.String title) { this.title = title; return this; } @Override public EnterpriseCrmEventbusProtoBuganizerNotification set(String fieldName, Object value) { return (EnterpriseCrmEventbusProtoBuganizerNotification) super.set(fieldName, value); } @Override public EnterpriseCrmEventbusProtoBuganizerNotification clone() { return (EnterpriseCrmEventbusProtoBuganizerNotification) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy