com.aliyun.dingtalkworkflow_1_0.models.GetSpaceWithDownloadAuthRequest 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.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class GetSpaceWithDownloadAuthRequest extends TeaModel {
/**
* example:
* 8345000
*/
@NameInMap("agentId")
public Long agentId;
/**
* This parameter is required.
*
* example:
* 111
*/
@NameInMap("fileId")
public String fileId;
@NameInMap("fileIdList")
public java.util.List fileIdList;
/**
* This parameter is required.
*
* example:
* a17444d1-075b-4a4d-xxxx
*/
@NameInMap("processInstanceId")
public String processInstanceId;
/**
* This parameter is required.
*
* example:
* user123
*/
@NameInMap("userId")
public String userId;
/**
* if can be null:
* true
*/
@NameInMap("withCommentAttatchment")
public Boolean withCommentAttatchment;
public static GetSpaceWithDownloadAuthRequest build(java.util.Map map) throws Exception {
GetSpaceWithDownloadAuthRequest self = new GetSpaceWithDownloadAuthRequest();
return TeaModel.build(map, self);
}
public GetSpaceWithDownloadAuthRequest setAgentId(Long agentId) {
this.agentId = agentId;
return this;
}
public Long getAgentId() {
return this.agentId;
}
public GetSpaceWithDownloadAuthRequest setFileId(String fileId) {
this.fileId = fileId;
return this;
}
public String getFileId() {
return this.fileId;
}
public GetSpaceWithDownloadAuthRequest setFileIdList(java.util.List fileIdList) {
this.fileIdList = fileIdList;
return this;
}
public java.util.List getFileIdList() {
return this.fileIdList;
}
public GetSpaceWithDownloadAuthRequest setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public GetSpaceWithDownloadAuthRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public GetSpaceWithDownloadAuthRequest setWithCommentAttatchment(Boolean withCommentAttatchment) {
this.withCommentAttatchment = withCommentAttatchment;
return this;
}
public Boolean getWithCommentAttatchment() {
return this.withCommentAttatchment;
}
}