
com.aliyun.ice20201109.models.DeleteLiveRecordFilesRequest Maven / Gradle / Ivy
// 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