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