com.aliyun.dingtalkyida_1_0.models.GetOpenUrlRequest 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.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class GetOpenUrlRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
*
*/
@NameInMap("fileUrl")
public String fileUrl;
/**
* example:
* zh_CN
*/
@NameInMap("language")
public String language;
/**
* This parameter is required.
*
* example:
* hexxxx
*/
@NameInMap("systemToken")
public String systemToken;
/**
* example:
* 60000
*/
@NameInMap("timeout")
public Long timeout;
/**
* This parameter is required.
*
* example:
* 未知
*/
@NameInMap("userId")
public String userId;
public static GetOpenUrlRequest build(java.util.Map map) throws Exception {
GetOpenUrlRequest self = new GetOpenUrlRequest();
return TeaModel.build(map, self);
}
public GetOpenUrlRequest setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
return this;
}
public String getFileUrl() {
return this.fileUrl;
}
public GetOpenUrlRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetOpenUrlRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public GetOpenUrlRequest setTimeout(Long timeout) {
this.timeout = timeout;
return this;
}
public Long getTimeout() {
return this.timeout;
}
public GetOpenUrlRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}