All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkexclusive_1_0.models.UpdateFileStatusRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy