com.aliyun.dingtalkindustry_1_0.models.CustomizeContactEmpDeleteResponseBody 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CustomizeContactEmpDeleteResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("content")
public Boolean content;
public static CustomizeContactEmpDeleteResponseBody build(java.util.Map map) throws Exception {
CustomizeContactEmpDeleteResponseBody self = new CustomizeContactEmpDeleteResponseBody();
return TeaModel.build(map, self);
}
public CustomizeContactEmpDeleteResponseBody setContent(Boolean content) {
this.content = content;
return this;
}
public Boolean getContent() {
return this.content;
}
}