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

com.aliyun.dingtalkcrm_1_0.models.GetCustomerTracksByRelationIdRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy