![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkstorage_1_0.models.RefreshWebOfficeTokenRequest 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.dingtalkstorage_1_0.models;
import com.aliyun.tea.*;
public class RefreshWebOfficeTokenRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* union_id
*/
@NameInMap("unionId")
public String unionId;
/**
* This parameter is required.
*/
@NameInMap("webOfficeAccessToken")
public String webOfficeAccessToken;
/**
* This parameter is required.
*/
@NameInMap("webOfficeRefreshToken")
public String webOfficeRefreshToken;
public static RefreshWebOfficeTokenRequest build(java.util.Map map) throws Exception {
RefreshWebOfficeTokenRequest self = new RefreshWebOfficeTokenRequest();
return TeaModel.build(map, self);
}
public RefreshWebOfficeTokenRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public RefreshWebOfficeTokenRequest setWebOfficeAccessToken(String webOfficeAccessToken) {
this.webOfficeAccessToken = webOfficeAccessToken;
return this;
}
public String getWebOfficeAccessToken() {
return this.webOfficeAccessToken;
}
public RefreshWebOfficeTokenRequest setWebOfficeRefreshToken(String webOfficeRefreshToken) {
this.webOfficeRefreshToken = webOfficeRefreshToken;
return this;
}
public String getWebOfficeRefreshToken() {
return this.webOfficeRefreshToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy