com.aliyun.dingtalkworkflow_1_0.models.AddApproveDentryAuthRequest 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 AddApproveDentryAuthRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("fileInfos")
public java.util.List fileInfos;
/**
* This parameter is required.
*
* example:
* user123
*/
@NameInMap("userId")
public String userId;
public static AddApproveDentryAuthRequest build(java.util.Map map) throws Exception {
AddApproveDentryAuthRequest self = new AddApproveDentryAuthRequest();
return TeaModel.build(map, self);
}
public AddApproveDentryAuthRequest setFileInfos(java.util.List fileInfos) {
this.fileInfos = fileInfos;
return this;
}
public java.util.List getFileInfos() {
return this.fileInfos;
}
public AddApproveDentryAuthRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public static class AddApproveDentryAuthRequestFileInfos extends TeaModel {
/**
* This parameter is required.
*
* example:
* B1oQixxxx
*/
@NameInMap("fileId")
public String fileId;
/**
* This parameter is required.
*
* example:
* 111
*/
@NameInMap("spaceId")
public Long spaceId;
public static AddApproveDentryAuthRequestFileInfos build(java.util.Map map) throws Exception {
AddApproveDentryAuthRequestFileInfos self = new AddApproveDentryAuthRequestFileInfos();
return TeaModel.build(map, self);
}
public AddApproveDentryAuthRequestFileInfos setFileId(String fileId) {
this.fileId = fileId;
return this;
}
public String getFileId() {
return this.fileId;
}
public AddApproveDentryAuthRequestFileInfos setSpaceId(Long spaceId) {
this.spaceId = spaceId;
return this;
}
public Long getSpaceId() {
return this.spaceId;
}
}
}