![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.ice20201109.models.DeleteLiveRecordFilesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
// 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