com.aliyun.dingtalkexclusive_1_0.models.UpdateFileStatusRequest 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class UpdateFileStatusRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("requestIds")
public java.util.List requestIds;
/**
* This parameter is required.
*
* example:
* 1-检测通过,2-检测失败
*/
@NameInMap("status")
public Integer status;
public static UpdateFileStatusRequest build(java.util.Map map) throws Exception {
UpdateFileStatusRequest self = new UpdateFileStatusRequest();
return TeaModel.build(map, self);
}
public UpdateFileStatusRequest setRequestIds(java.util.List requestIds) {
this.requestIds = requestIds;
return this;
}
public java.util.List getRequestIds() {
return this.requestIds;
}
public UpdateFileStatusRequest setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
}