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

com.aliyun.dingtalkresident_1_0.models.PagePointHistoryResponseBody 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 PagePointHistoryResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

true

*/ @NameInMap("hasMore") public Boolean hasMore; /** *

This parameter is required.

* * example: *

3276

*/ @NameInMap("nextToken") public Long nextToken; /** *

This parameter is required.

* * example: *

123

*/ @NameInMap("pointRecordList") public java.util.List pointRecordList; /** *

This parameter is required.

* * example: *

-1

*/ @NameInMap("totalCount") public Long totalCount; public static PagePointHistoryResponseBody build(java.util.Map map) throws Exception { PagePointHistoryResponseBody self = new PagePointHistoryResponseBody(); return TeaModel.build(map, self); } public PagePointHistoryResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public PagePointHistoryResponseBody setNextToken(Long nextToken) { this.nextToken = nextToken; return this; } public Long getNextToken() { return this.nextToken; } public PagePointHistoryResponseBody setPointRecordList(java.util.List pointRecordList) { this.pointRecordList = pointRecordList; return this; } public java.util.List getPointRecordList() { return this.pointRecordList; } public PagePointHistoryResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class PagePointHistoryResponseBodyPointRecordList extends TeaModel { /** *

This parameter is required.

* * example: *

1634630147

*/ @NameInMap("createAt") public Long createAt; /** * example: *

rule_1

*/ @NameInMap("ruleCode") public String ruleCode; /** *

This parameter is required.

* * example: *

发动态

*/ @NameInMap("ruleName") public String ruleName; /** *

This parameter is required.

* * example: *

3

*/ @NameInMap("score") public Integer score; /** *

This parameter is required.

* * example: *

123

*/ @NameInMap("userId") public String userId; /** *

This parameter is required.

* * example: *

7653

*/ @NameInMap("uuid") public String uuid; public static PagePointHistoryResponseBodyPointRecordList build(java.util.Map map) throws Exception { PagePointHistoryResponseBodyPointRecordList self = new PagePointHistoryResponseBodyPointRecordList(); return TeaModel.build(map, self); } public PagePointHistoryResponseBodyPointRecordList setCreateAt(Long createAt) { this.createAt = createAt; return this; } public Long getCreateAt() { return this.createAt; } public PagePointHistoryResponseBodyPointRecordList setRuleCode(String ruleCode) { this.ruleCode = ruleCode; return this; } public String getRuleCode() { return this.ruleCode; } public PagePointHistoryResponseBodyPointRecordList setRuleName(String ruleName) { this.ruleName = ruleName; return this; } public String getRuleName() { return this.ruleName; } public PagePointHistoryResponseBodyPointRecordList setScore(Integer score) { this.score = score; return this; } public Integer getScore() { return this.score; } public PagePointHistoryResponseBodyPointRecordList setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public PagePointHistoryResponseBodyPointRecordList setUuid(String uuid) { this.uuid = uuid; return this; } public String getUuid() { return this.uuid; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy