com.aliyun.dingtalkimpaas_1_0.models.GetSpaceFileUrlRequest 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class GetSpaceFileUrlRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("fileId")
public String fileId;
/**
* This parameter is required.
*
* example:
* 123#123@dingding
*/
@NameInMap("senderUid")
public String senderUid;
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("spaceId")
public String spaceId;
public static GetSpaceFileUrlRequest build(java.util.Map map) throws Exception {
GetSpaceFileUrlRequest self = new GetSpaceFileUrlRequest();
return TeaModel.build(map, self);
}
public GetSpaceFileUrlRequest setFileId(String fileId) {
this.fileId = fileId;
return this;
}
public String getFileId() {
return this.fileId;
}
public GetSpaceFileUrlRequest setSenderUid(String senderUid) {
this.senderUid = senderUid;
return this;
}
public String getSenderUid() {
return this.senderUid;
}
public GetSpaceFileUrlRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
}