
com.aliyun.dingtalkedu_1_0.models.GetBindChildInfoResponseBody 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 GetBindChildInfoResponseBody extends TeaModel {
/**
* example:
* 3000000000307711730
*/
@NameInMap("childUserId")
public String childUserId;
/**
* example:
* 3000000000433459511
*/
@NameInMap("currentUserId")
public String currentUserId;
/**
* example:
* ding95eef8003c9ca8ca24f2f5cc6abecb85
*/
@NameInMap("familyCorpId")
public String familyCorpId;
public static GetBindChildInfoResponseBody build(java.util.Map map) throws Exception {
GetBindChildInfoResponseBody self = new GetBindChildInfoResponseBody();
return TeaModel.build(map, self);
}
public GetBindChildInfoResponseBody setChildUserId(String childUserId) {
this.childUserId = childUserId;
return this;
}
public String getChildUserId() {
return this.childUserId;
}
public GetBindChildInfoResponseBody setCurrentUserId(String currentUserId) {
this.currentUserId = currentUserId;
return this;
}
public String getCurrentUserId() {
return this.currentUserId;
}
public GetBindChildInfoResponseBody setFamilyCorpId(String familyCorpId) {
this.familyCorpId = familyCorpId;
return this;
}
public String getFamilyCorpId() {
return this.familyCorpId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy