com.aliyun.dingtalkedu_1_0.models.BatchCreateResponseBody 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class BatchCreateResponseBody extends TeaModel {
// result
@NameInMap("result")
public BatchCreateResponseBodyResult result;
public static BatchCreateResponseBody build(java.util.Map map) throws Exception {
BatchCreateResponseBody self = new BatchCreateResponseBody();
return TeaModel.build(map, self);
}
public BatchCreateResponseBody setResult(BatchCreateResponseBodyResult result) {
this.result = result;
return this;
}
public BatchCreateResponseBodyResult getResult() {
return this.result;
}
public static class BatchCreateResponseBodyResult extends TeaModel {
@NameInMap("corpIdCardIdMap")
public java.util.Map corpIdCardIdMap;
public static BatchCreateResponseBodyResult build(java.util.Map map) throws Exception {
BatchCreateResponseBodyResult self = new BatchCreateResponseBodyResult();
return TeaModel.build(map, self);
}
public BatchCreateResponseBodyResult setCorpIdCardIdMap(java.util.Map corpIdCardIdMap) {
this.corpIdCardIdMap = corpIdCardIdMap;
return this;
}
public java.util.Map getCorpIdCardIdMap() {
return this.corpIdCardIdMap;
}
}
}