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

com.aliyun.dingtalkdoc_2_0.models.GetUserInfoByOpenTokenResponseBody 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.dingtalkdoc_2_0.models;

import com.aliyun.tea.*;

public class GetUserInfoByOpenTokenResponseBody extends TeaModel {
    // 用户的 unionId。
    @NameInMap("unionId")
    public String unionId;

    // 用户的userId。
    @NameInMap("userId")
    public String userId;

    public static GetUserInfoByOpenTokenResponseBody build(java.util.Map map) throws Exception {
        GetUserInfoByOpenTokenResponseBody self = new GetUserInfoByOpenTokenResponseBody();
        return TeaModel.build(map, self);
    }

    public GetUserInfoByOpenTokenResponseBody setUnionId(String unionId) {
        this.unionId = unionId;
        return this;
    }
    public String getUnionId() {
        return this.unionId;
    }

    public GetUserInfoByOpenTokenResponseBody setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getUserId() {
        return this.userId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy