com.aliyun.quickbi_public20220101.models.BatchAddFeishuUsersResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickbi_public20220101 Show documentation
Show all versions of quickbi_public20220101 Show documentation
Alibaba Cloud quickbi-public (20220101) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.quickbi_public20220101.models;
import com.aliyun.tea.*;
public class BatchAddFeishuUsersResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public BatchAddFeishuUsersResponseBodyResult result;
@NameInMap("Success")
public Boolean success;
public static BatchAddFeishuUsersResponseBody build(java.util.Map map) throws Exception {
BatchAddFeishuUsersResponseBody self = new BatchAddFeishuUsersResponseBody();
return TeaModel.build(map, self);
}
public BatchAddFeishuUsersResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public BatchAddFeishuUsersResponseBody setResult(BatchAddFeishuUsersResponseBodyResult result) {
this.result = result;
return this;
}
public BatchAddFeishuUsersResponseBodyResult getResult() {
return this.result;
}
public BatchAddFeishuUsersResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class BatchAddFeishuUsersResponseBodyResultFailResultsFailInfos extends TeaModel {
@NameInMap("Code")
public String code;
@NameInMap("CodeDesc")
public String codeDesc;
@NameInMap("Input")
public String input;
public static BatchAddFeishuUsersResponseBodyResultFailResultsFailInfos build(java.util.Map map) throws Exception {
BatchAddFeishuUsersResponseBodyResultFailResultsFailInfos self = new BatchAddFeishuUsersResponseBodyResultFailResultsFailInfos();
return TeaModel.build(map, self);
}
public BatchAddFeishuUsersResponseBodyResultFailResultsFailInfos setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public BatchAddFeishuUsersResponseBodyResultFailResultsFailInfos setCodeDesc(String codeDesc) {
this.codeDesc = codeDesc;
return this;
}
public String getCodeDesc() {
return this.codeDesc;
}
public BatchAddFeishuUsersResponseBodyResultFailResultsFailInfos setInput(String input) {
this.input = input;
return this;
}
public String getInput() {
return this.input;
}
}
public static class BatchAddFeishuUsersResponseBodyResultFailResults extends TeaModel {
@NameInMap("FailInfos")
public java.util.List failInfos;
public static BatchAddFeishuUsersResponseBodyResultFailResults build(java.util.Map map) throws Exception {
BatchAddFeishuUsersResponseBodyResultFailResults self = new BatchAddFeishuUsersResponseBodyResultFailResults();
return TeaModel.build(map, self);
}
public BatchAddFeishuUsersResponseBodyResultFailResults setFailInfos(java.util.List failInfos) {
this.failInfos = failInfos;
return this;
}
public java.util.List getFailInfos() {
return this.failInfos;
}
}
public static class BatchAddFeishuUsersResponseBodyResult extends TeaModel {
@NameInMap("FailCount")
public Integer failCount;
@NameInMap("FailResults")
public java.util.List failResults;
@NameInMap("OkCount")
public Integer okCount;
public static BatchAddFeishuUsersResponseBodyResult build(java.util.Map map) throws Exception {
BatchAddFeishuUsersResponseBodyResult self = new BatchAddFeishuUsersResponseBodyResult();
return TeaModel.build(map, self);
}
public BatchAddFeishuUsersResponseBodyResult setFailCount(Integer failCount) {
this.failCount = failCount;
return this;
}
public Integer getFailCount() {
return this.failCount;
}
public BatchAddFeishuUsersResponseBodyResult setFailResults(java.util.List failResults) {
this.failResults = failResults;
return this;
}
public java.util.List getFailResults() {
return this.failResults;
}
public BatchAddFeishuUsersResponseBodyResult setOkCount(Integer okCount) {
this.okCount = okCount;
return this;
}
public Integer getOkCount() {
return this.okCount;
}
}
}