com.aliyun.dingtalkcrm_1_0.models.QueryAllTracksResponseBody 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.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class QueryAllTracksResponseBody extends TeaModel {
/**
* example:
* true
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* example:
* 20
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* 10001
*/
@NameInMap("nextToken")
public String nextToken;
@NameInMap("values")
public java.util.List values;
public static QueryAllTracksResponseBody build(java.util.Map map) throws Exception {
QueryAllTracksResponseBody self = new QueryAllTracksResponseBody();
return TeaModel.build(map, self);
}
public QueryAllTracksResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public QueryAllTracksResponseBody setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryAllTracksResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public QueryAllTracksResponseBody setValues(java.util.List values) {
this.values = values;
return this;
}
public java.util.List getValues() {
return this.values;
}
public static class QueryAllTracksResponseBodyValues extends TeaModel {
/**
* example:
* 1234
*/
@NameInMap("bizId")
public String bizId;
/**
* example:
* manager1234
*/
@NameInMap("creator")
public String creator;
/**
* example:
* customer_id
*/
@NameInMap("customerId")
public String customerId;
/**
* example:
* 1237126786127
*/
@NameInMap("gmtCreate")
public Long gmtCreate;
/**
* This parameter is required.
*
* example:
* asjkdh189127836
*/
@NameInMap("id")
public String id;
/**
* example:
* 4
*/
@NameInMap("subType")
public Integer subType;
/**
* example:
* 80
*/
@NameInMap("type")
public Integer type;
public static QueryAllTracksResponseBodyValues build(java.util.Map map) throws Exception {
QueryAllTracksResponseBodyValues self = new QueryAllTracksResponseBodyValues();
return TeaModel.build(map, self);
}
public QueryAllTracksResponseBodyValues setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public QueryAllTracksResponseBodyValues setCreator(String creator) {
this.creator = creator;
return this;
}
public String getCreator() {
return this.creator;
}
public QueryAllTracksResponseBodyValues setCustomerId(String customerId) {
this.customerId = customerId;
return this;
}
public String getCustomerId() {
return this.customerId;
}
public QueryAllTracksResponseBodyValues setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public Long getGmtCreate() {
return this.gmtCreate;
}
public QueryAllTracksResponseBodyValues setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public QueryAllTracksResponseBodyValues setSubType(Integer subType) {
this.subType = subType;
return this;
}
public Integer getSubType() {
return this.subType;
}
public QueryAllTracksResponseBodyValues setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
}
}