All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.GetBindChildInfoResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    // 孩子id
    @NameInMap("childUserId")
    public String childUserId;

    // 当前用户id
    @NameInMap("currentUserId")
    public String currentUserId;

    // 家庭id
    @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 - 2024 Weber Informatics LLC | Privacy Policy