
com.aliyun.dingtalkedu_1_0.models.BatchCreateResponseBody Maven / Gradle / Ivy
// 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 {
@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;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy