![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkbizfinance_1_0.models.BatchCreateCustomerResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;
import com.aliyun.tea.*;
public class BatchCreateCustomerResponseBody extends TeaModel {
@NameInMap("errorResult")
public java.util.List errorResult;
@NameInMap("success")
public Boolean success;
public static BatchCreateCustomerResponseBody build(java.util.Map map) throws Exception {
BatchCreateCustomerResponseBody self = new BatchCreateCustomerResponseBody();
return TeaModel.build(map, self);
}
public BatchCreateCustomerResponseBody setErrorResult(java.util.List errorResult) {
this.errorResult = errorResult;
return this;
}
public java.util.List getErrorResult() {
return this.errorResult;
}
public BatchCreateCustomerResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class BatchCreateCustomerResponseBodyErrorResult extends TeaModel {
@NameInMap("errorKey")
public String errorKey;
@NameInMap("errorMsg")
public String errorMsg;
public static BatchCreateCustomerResponseBodyErrorResult build(java.util.Map map) throws Exception {
BatchCreateCustomerResponseBodyErrorResult self = new BatchCreateCustomerResponseBodyErrorResult();
return TeaModel.build(map, self);
}
public BatchCreateCustomerResponseBodyErrorResult setErrorKey(String errorKey) {
this.errorKey = errorKey;
return this;
}
public String getErrorKey() {
return this.errorKey;
}
public BatchCreateCustomerResponseBodyErrorResult setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
return this;
}
public String getErrorMsg() {
return this.errorMsg;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy