com.aliyun.dingtalklive_1_0.models.DeleteLiveFeedResponseBody 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.dingtalklive_1_0.models;
import com.aliyun.tea.*;
public class DeleteLiveFeedResponseBody extends TeaModel {
/**
* example:
* true
*/
@NameInMap("hasDelete")
public Boolean hasDelete;
public static DeleteLiveFeedResponseBody build(java.util.Map map) throws Exception {
DeleteLiveFeedResponseBody self = new DeleteLiveFeedResponseBody();
return TeaModel.build(map, self);
}
public DeleteLiveFeedResponseBody setHasDelete(Boolean hasDelete) {
this.hasDelete = hasDelete;
return this;
}
public Boolean getHasDelete() {
return this.hasDelete;
}
}