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