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

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

/**
 * The SfdcChannel that points to a CDC or Platform Event Channel.
 *
 * 

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 GoogleCloudIntegrationsV1alphaSfdcChannel extends com.google.api.client.json.GenericJson { /** * The Channel topic defined by salesforce once an channel is opened * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String channelTopic; /** * Output only. Time when the channel is created * The value may be {@code null}. */ @com.google.api.client.util.Key private String createTime; /** * Output only. Time when the channel was deleted. Empty if not deleted. * The value may be {@code null}. */ @com.google.api.client.util.Key private String deleteTime; /** * The description for this channel * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String description; /** * Client level unique name/alias to easily reference a channel. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String displayName; /** * Indicated if a channel has any active integrations referencing it. Set to false when the * channel is created, and set to true if there is any integration published with the channel * configured in it. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean isActive; /** * Last sfdc messsage replay id for channel * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String lastReplayId; /** * Resource name of the SFDC channel projects/{project}/locations/{location}/sfdcInstances/{sfdc_i * nstance}/sfdcChannels/{sfdc_channel}. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String name; /** * Output only. Time when the channel was last updated * The value may be {@code null}. */ @com.google.api.client.util.Key private String updateTime; /** * The Channel topic defined by salesforce once an channel is opened * @return value or {@code null} for none */ public java.lang.String getChannelTopic() { return channelTopic; } /** * The Channel topic defined by salesforce once an channel is opened * @param channelTopic channelTopic or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcChannel setChannelTopic(java.lang.String channelTopic) { this.channelTopic = channelTopic; return this; } /** * Output only. Time when the channel is created * @return value or {@code null} for none */ public String getCreateTime() { return createTime; } /** * Output only. Time when the channel is created * @param createTime createTime or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcChannel setCreateTime(String createTime) { this.createTime = createTime; return this; } /** * Output only. Time when the channel was deleted. Empty if not deleted. * @return value or {@code null} for none */ public String getDeleteTime() { return deleteTime; } /** * Output only. Time when the channel was deleted. Empty if not deleted. * @param deleteTime deleteTime or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcChannel setDeleteTime(String deleteTime) { this.deleteTime = deleteTime; return this; } /** * The description for this channel * @return value or {@code null} for none */ public java.lang.String getDescription() { return description; } /** * The description for this channel * @param description description or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcChannel setDescription(java.lang.String description) { this.description = description; return this; } /** * Client level unique name/alias to easily reference a channel. * @return value or {@code null} for none */ public java.lang.String getDisplayName() { return displayName; } /** * Client level unique name/alias to easily reference a channel. * @param displayName displayName or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcChannel setDisplayName(java.lang.String displayName) { this.displayName = displayName; return this; } /** * Indicated if a channel has any active integrations referencing it. Set to false when the * channel is created, and set to true if there is any integration published with the channel * configured in it. * @return value or {@code null} for none */ public java.lang.Boolean getIsActive() { return isActive; } /** * Indicated if a channel has any active integrations referencing it. Set to false when the * channel is created, and set to true if there is any integration published with the channel * configured in it. * @param isActive isActive or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcChannel setIsActive(java.lang.Boolean isActive) { this.isActive = isActive; return this; } /** * Last sfdc messsage replay id for channel * @return value or {@code null} for none */ public java.lang.String getLastReplayId() { return lastReplayId; } /** * Last sfdc messsage replay id for channel * @param lastReplayId lastReplayId or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcChannel setLastReplayId(java.lang.String lastReplayId) { this.lastReplayId = lastReplayId; return this; } /** * Resource name of the SFDC channel projects/{project}/locations/{location}/sfdcInstances/{sfdc_i * nstance}/sfdcChannels/{sfdc_channel}. * @return value or {@code null} for none */ public java.lang.String getName() { return name; } /** * Resource name of the SFDC channel projects/{project}/locations/{location}/sfdcInstances/{sfdc_i * nstance}/sfdcChannels/{sfdc_channel}. * @param name name or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcChannel setName(java.lang.String name) { this.name = name; return this; } /** * Output only. Time when the channel was last updated * @return value or {@code null} for none */ public String getUpdateTime() { return updateTime; } /** * Output only. Time when the channel was last updated * @param updateTime updateTime or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcChannel setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } @Override public GoogleCloudIntegrationsV1alphaSfdcChannel set(String fieldName, Object value) { return (GoogleCloudIntegrationsV1alphaSfdcChannel) super.set(fieldName, value); } @Override public GoogleCloudIntegrationsV1alphaSfdcChannel clone() { return (GoogleCloudIntegrationsV1alphaSfdcChannel) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy