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

com.aliyun.ice20201109.models.DeleteLiveRecordFilesRequest Maven / Gradle / Ivy

There is a newer version: 3.11.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;

import com.aliyun.tea.*;

public class DeleteLiveRecordFilesRequest extends TeaModel {
    @NameInMap("RecordIds")
    public java.util.List recordIds;

    @NameInMap("RemoveFile")
    public Boolean removeFile;

    public static DeleteLiveRecordFilesRequest build(java.util.Map map) throws Exception {
        DeleteLiveRecordFilesRequest self = new DeleteLiveRecordFilesRequest();
        return TeaModel.build(map, self);
    }

    public DeleteLiveRecordFilesRequest setRecordIds(java.util.List recordIds) {
        this.recordIds = recordIds;
        return this;
    }
    public java.util.List getRecordIds() {
        return this.recordIds;
    }

    public DeleteLiveRecordFilesRequest setRemoveFile(Boolean removeFile) {
        this.removeFile = removeFile;
        return this;
    }
    public Boolean getRemoveFile() {
        return this.removeFile;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy