com.google.api.services.integrations.v1alpha.model.EnterpriseCrmEventbusProtoScatterResponse 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 EnterpriseCrmEventbusProtoScatterResponse.
*
* 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 EnterpriseCrmEventbusProtoScatterResponse extends com.google.api.client.json.GenericJson {
/**
* The error message of the failure if applicable.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String errorMsg;
/**
* The execution ids of each Subworkflow fired by this scatter.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List executionIds;
/**
* If execution is sync, this is true if the execution passed and false if it failed. If the
* execution is async, this is true if the WF was fired off successfully, and false if it failed
* to execute. The success or failure of the subworkflows executed are not captured.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean isSuccessful;
/**
* A list of all the response parameters in the aggregtorMap stored with the remapped key.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List responseParams;
static {
// hack to force ProGuard to consider EnterpriseCrmEventbusProtoParameterEntry used, since otherwise it would be stripped out
// see https://github.com/google/google-api-java-client/issues/543
com.google.api.client.util.Data.nullOf(EnterpriseCrmEventbusProtoParameterEntry.class);
}
/**
* The element that was scattered for this execution.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private EnterpriseCrmEventbusProtoParameterValueType scatterElement;
/**
* The error message of the failure if applicable.
* @return value or {@code null} for none
*/
public java.lang.String getErrorMsg() {
return errorMsg;
}
/**
* The error message of the failure if applicable.
* @param errorMsg errorMsg or {@code null} for none
*/
public EnterpriseCrmEventbusProtoScatterResponse setErrorMsg(java.lang.String errorMsg) {
this.errorMsg = errorMsg;
return this;
}
/**
* The execution ids of each Subworkflow fired by this scatter.
* @return value or {@code null} for none
*/
public java.util.List getExecutionIds() {
return executionIds;
}
/**
* The execution ids of each Subworkflow fired by this scatter.
* @param executionIds executionIds or {@code null} for none
*/
public EnterpriseCrmEventbusProtoScatterResponse setExecutionIds(java.util.List executionIds) {
this.executionIds = executionIds;
return this;
}
/**
* If execution is sync, this is true if the execution passed and false if it failed. If the
* execution is async, this is true if the WF was fired off successfully, and false if it failed
* to execute. The success or failure of the subworkflows executed are not captured.
* @return value or {@code null} for none
*/
public java.lang.Boolean getIsSuccessful() {
return isSuccessful;
}
/**
* If execution is sync, this is true if the execution passed and false if it failed. If the
* execution is async, this is true if the WF was fired off successfully, and false if it failed
* to execute. The success or failure of the subworkflows executed are not captured.
* @param isSuccessful isSuccessful or {@code null} for none
*/
public EnterpriseCrmEventbusProtoScatterResponse setIsSuccessful(java.lang.Boolean isSuccessful) {
this.isSuccessful = isSuccessful;
return this;
}
/**
* A list of all the response parameters in the aggregtorMap stored with the remapped key.
* @return value or {@code null} for none
*/
public java.util.List getResponseParams() {
return responseParams;
}
/**
* A list of all the response parameters in the aggregtorMap stored with the remapped key.
* @param responseParams responseParams or {@code null} for none
*/
public EnterpriseCrmEventbusProtoScatterResponse setResponseParams(java.util.List responseParams) {
this.responseParams = responseParams;
return this;
}
/**
* The element that was scattered for this execution.
* @return value or {@code null} for none
*/
public EnterpriseCrmEventbusProtoParameterValueType getScatterElement() {
return scatterElement;
}
/**
* The element that was scattered for this execution.
* @param scatterElement scatterElement or {@code null} for none
*/
public EnterpriseCrmEventbusProtoScatterResponse setScatterElement(EnterpriseCrmEventbusProtoParameterValueType scatterElement) {
this.scatterElement = scatterElement;
return this;
}
@Override
public EnterpriseCrmEventbusProtoScatterResponse set(String fieldName, Object value) {
return (EnterpriseCrmEventbusProtoScatterResponse) super.set(fieldName, value);
}
@Override
public EnterpriseCrmEventbusProtoScatterResponse clone() {
return (EnterpriseCrmEventbusProtoScatterResponse) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy