com.aliyun.dingtalkcontent_1_0.models.DeleteVideosRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontent_1_0.models;
import com.aliyun.tea.*;
public class DeleteVideosRequest extends TeaModel {
@NameInMap("body")
public java.util.List body;
public static DeleteVideosRequest build(java.util.Map map) throws Exception {
DeleteVideosRequest self = new DeleteVideosRequest();
return TeaModel.build(map, self);
}
public DeleteVideosRequest setBody(java.util.List body) {
this.body = body;
return this;
}
public java.util.List getBody() {
return this.body;
}
}