com.aliyun.dingtalkcrm_1_0.models.GetCustomerTracksByRelationIdRequest 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 GetCustomerTracksByRelationIdRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* fasd-afsd1-21312-faaa
*/
@NameInMap("relationId")
public String relationId;
/**
* example:
* 0
*/
@NameInMap("typeGroup")
public Integer typeGroup;
public static GetCustomerTracksByRelationIdRequest build(java.util.Map map) throws Exception {
GetCustomerTracksByRelationIdRequest self = new GetCustomerTracksByRelationIdRequest();
return TeaModel.build(map, self);
}
public GetCustomerTracksByRelationIdRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public GetCustomerTracksByRelationIdRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public GetCustomerTracksByRelationIdRequest setRelationId(String relationId) {
this.relationId = relationId;
return this;
}
public String getRelationId() {
return this.relationId;
}
public GetCustomerTracksByRelationIdRequest setTypeGroup(Integer typeGroup) {
this.typeGroup = typeGroup;
return this;
}
public Integer getTypeGroup() {
return this.typeGroup;
}
}