![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkoauth2_1_0.models.GetTokenResponseBody 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.dingtalkoauth2_1_0.models;
import com.aliyun.tea.*;
public class GetTokenResponseBody extends TeaModel {
@NameInMap("access_token")
public String accessToken;
@NameInMap("expires_in")
public Integer expiresIn;
public static GetTokenResponseBody build(java.util.Map map) throws Exception {
GetTokenResponseBody self = new GetTokenResponseBody();
return TeaModel.build(map, self);
}
public GetTokenResponseBody setAccessToken(String accessToken) {
this.accessToken = accessToken;
return this;
}
public String getAccessToken() {
return this.accessToken;
}
public GetTokenResponseBody setExpiresIn(Integer expiresIn) {
this.expiresIn = expiresIn;
return this;
}
public Integer getExpiresIn() {
return this.expiresIn;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy