All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkresident_1_0.models.PagePointHistoryRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy