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

com.aliyun.dingtalkyida_1_0.models.GetOpenUrlRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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: *

https://www.aliwork.com/fileHandle?appType=APP_VN7I6HVKUTXES7XX4OI8&fileName=2a4103a6-44d5-4114-990d-4147a2d53811.xlsx&instId=&type=download

*/ @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy