com.google.api.services.integrations.v1alpha.model.EnterpriseCrmEventbusStatsDimensions 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 EnterpriseCrmEventbusStatsDimensions.
*
* 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 EnterpriseCrmEventbusStatsDimensions extends com.google.api.client.json.GenericJson {
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String clientId;
/**
* Whether to include or exclude the enums matching the regex.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String enumFilterType;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String errorEnumString;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String retryAttempt;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String taskName;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String taskNumber;
/**
* Stats have been or will be aggregated on set fields for any semantically-meaningful
* combination.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String triggerId;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String warningEnumString;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String workflowId;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String workflowName;
/**
* @return value or {@code null} for none
*/
public java.lang.String getClientId() {
return clientId;
}
/**
* @param clientId clientId or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setClientId(java.lang.String clientId) {
this.clientId = clientId;
return this;
}
/**
* Whether to include or exclude the enums matching the regex.
* @return value or {@code null} for none
*/
public java.lang.String getEnumFilterType() {
return enumFilterType;
}
/**
* Whether to include or exclude the enums matching the regex.
* @param enumFilterType enumFilterType or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setEnumFilterType(java.lang.String enumFilterType) {
this.enumFilterType = enumFilterType;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.String getErrorEnumString() {
return errorEnumString;
}
/**
* @param errorEnumString errorEnumString or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setErrorEnumString(java.lang.String errorEnumString) {
this.errorEnumString = errorEnumString;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.String getRetryAttempt() {
return retryAttempt;
}
/**
* @param retryAttempt retryAttempt or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setRetryAttempt(java.lang.String retryAttempt) {
this.retryAttempt = retryAttempt;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.String getTaskName() {
return taskName;
}
/**
* @param taskName taskName or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setTaskName(java.lang.String taskName) {
this.taskName = taskName;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.String getTaskNumber() {
return taskNumber;
}
/**
* @param taskNumber taskNumber or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setTaskNumber(java.lang.String taskNumber) {
this.taskNumber = taskNumber;
return this;
}
/**
* Stats have been or will be aggregated on set fields for any semantically-meaningful
* combination.
* @return value or {@code null} for none
*/
public java.lang.String getTriggerId() {
return triggerId;
}
/**
* Stats have been or will be aggregated on set fields for any semantically-meaningful
* combination.
* @param triggerId triggerId or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setTriggerId(java.lang.String triggerId) {
this.triggerId = triggerId;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.String getWarningEnumString() {
return warningEnumString;
}
/**
* @param warningEnumString warningEnumString or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setWarningEnumString(java.lang.String warningEnumString) {
this.warningEnumString = warningEnumString;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.String getWorkflowId() {
return workflowId;
}
/**
* @param workflowId workflowId or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setWorkflowId(java.lang.String workflowId) {
this.workflowId = workflowId;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.String getWorkflowName() {
return workflowName;
}
/**
* @param workflowName workflowName or {@code null} for none
*/
public EnterpriseCrmEventbusStatsDimensions setWorkflowName(java.lang.String workflowName) {
this.workflowName = workflowName;
return this;
}
@Override
public EnterpriseCrmEventbusStatsDimensions set(String fieldName, Object value) {
return (EnterpriseCrmEventbusStatsDimensions) super.set(fieldName, value);
}
@Override
public EnterpriseCrmEventbusStatsDimensions clone() {
return (EnterpriseCrmEventbusStatsDimensions) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy