com.aliyun.dingtalkh5package_1_0.models.GetAccessTokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkh5package_1_0.models;
import com.aliyun.tea.*;
public class GetAccessTokenRequest extends TeaModel {
@NameInMap("agentId")
public Long agentId;
@NameInMap("appId")
public Long appId;
public static GetAccessTokenRequest build(java.util.Map map) throws Exception {
GetAccessTokenRequest self = new GetAccessTokenRequest();
return TeaModel.build(map, self);
}
public GetAccessTokenRequest setAgentId(Long agentId) {
this.agentId = agentId;
return this;
}
public Long getAgentId() {
return this.agentId;
}
public GetAccessTokenRequest setAppId(Long appId) {
this.appId = appId;
return this;
}
public Long getAppId() {
return this.appId;
}
}