com.aliyun.dingtalkcrm_1_0.models.GetCustomerTracksByRelationIdResponseBody 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 GetCustomerTracksByRelationIdResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("nextToken")
public String nextToken;
/**
* example:
* true
*/
@NameInMap("resultList")
public java.util.List resultList;
public static GetCustomerTracksByRelationIdResponseBody build(java.util.Map map) throws Exception {
GetCustomerTracksByRelationIdResponseBody self = new GetCustomerTracksByRelationIdResponseBody();
return TeaModel.build(map, self);
}
public GetCustomerTracksByRelationIdResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public GetCustomerTracksByRelationIdResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public GetCustomerTracksByRelationIdResponseBody setResultList(java.util.List resultList) {
this.resultList = resultList;
return this;
}
public java.util.List getResultList() {
return this.resultList;
}
public static class GetCustomerTracksByRelationIdResponseBodyResultListIsvInfo extends TeaModel {
@NameInMap("appName")
public String appName;
@NameInMap("orgName")
public String orgName;
public static GetCustomerTracksByRelationIdResponseBodyResultListIsvInfo build(java.util.Map map) throws Exception {
GetCustomerTracksByRelationIdResponseBodyResultListIsvInfo self = new GetCustomerTracksByRelationIdResponseBodyResultListIsvInfo();
return TeaModel.build(map, self);
}
public GetCustomerTracksByRelationIdResponseBodyResultListIsvInfo setAppName(String appName) {
this.appName = appName;
return this;
}
public String getAppName() {
return this.appName;
}
public GetCustomerTracksByRelationIdResponseBodyResultListIsvInfo setOrgName(String orgName) {
this.orgName = orgName;
return this;
}
public String getOrgName() {
return this.orgName;
}
}
public static class GetCustomerTracksByRelationIdResponseBodyResultList extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("content")
public String content;
/**
* This parameter is required.
*
* example:
* 华佗
*/
@NameInMap("creatorName")
public String creatorName;
@NameInMap("detail")
public java.util.Map detail;
/**
* This parameter is required.
*
* example:
* markdown
*/
@NameInMap("format")
public String format;
/**
* This parameter is required.
*
* example:
* 2022-03-24T09:30Z
*/
@NameInMap("gmtCreate")
public String gmtCreate;
/**
* example:
* dadf134234
*/
@NameInMap("id")
public String id;
@NameInMap("isvInfo")
public GetCustomerTracksByRelationIdResponseBodyResultListIsvInfo isvInfo;
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
* 201
*/
@NameInMap("type")
public Integer type;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("typeGroup")
public Integer typeGroup;
public static GetCustomerTracksByRelationIdResponseBodyResultList build(java.util.Map map) throws Exception {
GetCustomerTracksByRelationIdResponseBodyResultList self = new GetCustomerTracksByRelationIdResponseBodyResultList();
return TeaModel.build(map, self);
}
public GetCustomerTracksByRelationIdResponseBodyResultList setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public GetCustomerTracksByRelationIdResponseBodyResultList setCreatorName(String creatorName) {
this.creatorName = creatorName;
return this;
}
public String getCreatorName() {
return this.creatorName;
}
public GetCustomerTracksByRelationIdResponseBodyResultList setDetail(java.util.Map detail) {
this.detail = detail;
return this;
}
public java.util.Map getDetail() {
return this.detail;
}
public GetCustomerTracksByRelationIdResponseBodyResultList setFormat(String format) {
this.format = format;
return this;
}
public String getFormat() {
return this.format;
}
public GetCustomerTracksByRelationIdResponseBodyResultList setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public GetCustomerTracksByRelationIdResponseBodyResultList setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetCustomerTracksByRelationIdResponseBodyResultList setIsvInfo(GetCustomerTracksByRelationIdResponseBodyResultListIsvInfo isvInfo) {
this.isvInfo = isvInfo;
return this;
}
public GetCustomerTracksByRelationIdResponseBodyResultListIsvInfo getIsvInfo() {
return this.isvInfo;
}
public GetCustomerTracksByRelationIdResponseBodyResultList setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public GetCustomerTracksByRelationIdResponseBodyResultList setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
public GetCustomerTracksByRelationIdResponseBodyResultList setTypeGroup(Integer typeGroup) {
this.typeGroup = typeGroup;
return this;
}
public Integer getTypeGroup() {
return this.typeGroup;
}
}
}