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.30
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 {
    // 请求id列表
    @NameInMap("requestIds")
    public java.util.List requestIds;

    // 更新的状态
    @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