com.aliyun.dingtalkorg_culture_1_0.models.UpdateAutoIssuePointRequest 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.dingtalkorg_culture_1_0.models;
import com.aliyun.tea.*;
public class UpdateAutoIssuePointRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 100
*/
@NameInMap("pointAutoNum")
public Long pointAutoNum;
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("pointAutoState")
public Boolean pointAutoState;
/**
* This parameter is required.
*
* example:
* 15
*/
@NameInMap("pointAutoTime")
public Long pointAutoTime;
/**
* This parameter is required.
*
* example:
* 11185568-1380470824
*/
@NameInMap("userId")
public String userId;
public static UpdateAutoIssuePointRequest build(java.util.Map map) throws Exception {
UpdateAutoIssuePointRequest self = new UpdateAutoIssuePointRequest();
return TeaModel.build(map, self);
}
public UpdateAutoIssuePointRequest setPointAutoNum(Long pointAutoNum) {
this.pointAutoNum = pointAutoNum;
return this;
}
public Long getPointAutoNum() {
return this.pointAutoNum;
}
public UpdateAutoIssuePointRequest setPointAutoState(Boolean pointAutoState) {
this.pointAutoState = pointAutoState;
return this;
}
public Boolean getPointAutoState() {
return this.pointAutoState;
}
public UpdateAutoIssuePointRequest setPointAutoTime(Long pointAutoTime) {
this.pointAutoTime = pointAutoTime;
return this;
}
public Long getPointAutoTime() {
return this.pointAutoTime;
}
public UpdateAutoIssuePointRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}