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

com.aliyun.dingtalkdoc_2_0.models.GetUserInfoByOpenTokenRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
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 GetUserInfoByOpenTokenRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("docKey") public String docKey; /** *

This parameter is required.

*/ @NameInMap("openToken") public String openToken; public static GetUserInfoByOpenTokenRequest build(java.util.Map map) throws Exception { GetUserInfoByOpenTokenRequest self = new GetUserInfoByOpenTokenRequest(); return TeaModel.build(map, self); } public GetUserInfoByOpenTokenRequest setDocKey(String docKey) { this.docKey = docKey; return this; } public String getDocKey() { return this.docKey; } public GetUserInfoByOpenTokenRequest setOpenToken(String openToken) { this.openToken = openToken; return this; } public String getOpenToken() { return this.openToken; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy