com.aliyun.dingtalkresident_1_0.models.ListPointRulesRequest 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.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class ListPointRulesRequest extends TeaModel {
// 是否查询全员圈积分
@NameInMap("isCircle")
public Boolean isCircle;
public static ListPointRulesRequest build(java.util.Map map) throws Exception {
ListPointRulesRequest self = new ListPointRulesRequest();
return TeaModel.build(map, self);
}
public ListPointRulesRequest setIsCircle(Boolean isCircle) {
this.isCircle = isCircle;
return this;
}
public Boolean getIsCircle() {
return this.isCircle;
}
}