
com.aliyun.dingtalkedu_1_0.models.GetFileDownloadInfoRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class GetFileDownloadInfoRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("fileIdList")
public java.util.List fileIdList;
/**
* This parameter is required.
*/
@NameInMap("spaceId")
public Long spaceId;
public static GetFileDownloadInfoRequest build(java.util.Map map) throws Exception {
GetFileDownloadInfoRequest self = new GetFileDownloadInfoRequest();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoRequest setFileIdList(java.util.List fileIdList) {
this.fileIdList = fileIdList;
return this;
}
public java.util.List getFileIdList() {
return this.fileIdList;
}
public GetFileDownloadInfoRequest setSpaceId(Long spaceId) {
this.spaceId = spaceId;
return this;
}
public Long getSpaceId() {
return this.spaceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy