com.aliyun.dingtalkresident_1_0.models.PagePointHistoryRequest 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 PagePointHistoryRequest extends TeaModel {
/**
* example:
* 1631260866105
*/
@NameInMap("endTime")
public Long endTime;
/**
* This parameter is required.
*
* example:
* false
*/
@NameInMap("isCircle")
public Boolean isCircle;
/**
* This parameter is required.
*
* example:
* 15
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("nextToken")
public Long nextToken;
/**
* example:
* 1630345050858
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* 123
*
* if can be null:
* true
*/
@NameInMap("userId")
public String userId;
public static PagePointHistoryRequest build(java.util.Map map) throws Exception {
PagePointHistoryRequest self = new PagePointHistoryRequest();
return TeaModel.build(map, self);
}
public PagePointHistoryRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public PagePointHistoryRequest setIsCircle(Boolean isCircle) {
this.isCircle = isCircle;
return this;
}
public Boolean getIsCircle() {
return this.isCircle;
}
public PagePointHistoryRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public PagePointHistoryRequest setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public PagePointHistoryRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public PagePointHistoryRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}