com.aliyun.ice20201109.models.DeleteMediaMarksResponseBody 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 DeleteMediaMarksResponseBody extends TeaModel {
@NameInMap("MediaId")
public String mediaId;
@NameInMap("MediaMarkIds")
public String mediaMarkIds;
@NameInMap("RequestId")
public String requestId;
public static DeleteMediaMarksResponseBody build(java.util.Map map) throws Exception {
DeleteMediaMarksResponseBody self = new DeleteMediaMarksResponseBody();
return TeaModel.build(map, self);
}
public DeleteMediaMarksResponseBody setMediaId(String mediaId) {
this.mediaId = mediaId;
return this;
}
public String getMediaId() {
return this.mediaId;
}
public DeleteMediaMarksResponseBody setMediaMarkIds(String mediaMarkIds) {
this.mediaMarkIds = mediaMarkIds;
return this;
}
public String getMediaMarkIds() {
return this.mediaMarkIds;
}
public DeleteMediaMarksResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}