com.aliyun.ice20201109.models.DeleteMediaInfosResponseBody 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 DeleteMediaInfosResponseBody extends TeaModel {
@NameInMap("ForbiddenList")
public java.util.List forbiddenList;
@NameInMap("IgnoredList")
public java.util.List ignoredList;
@NameInMap("RequestId")
public String requestId;
public static DeleteMediaInfosResponseBody build(java.util.Map map) throws Exception {
DeleteMediaInfosResponseBody self = new DeleteMediaInfosResponseBody();
return TeaModel.build(map, self);
}
public DeleteMediaInfosResponseBody setForbiddenList(java.util.List forbiddenList) {
this.forbiddenList = forbiddenList;
return this;
}
public java.util.List getForbiddenList() {
return this.forbiddenList;
}
public DeleteMediaInfosResponseBody setIgnoredList(java.util.List ignoredList) {
this.ignoredList = ignoredList;
return this;
}
public java.util.List getIgnoredList() {
return this.ignoredList;
}
public DeleteMediaInfosResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}