com.aliyun.dingtalkim_1_0.models.GetFamilySchoolConversationsRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class GetFamilySchoolConversationsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* This parameter is required.
*/
@NameInMap("nextToken")
public Long nextToken;
/**
* This parameter is required.
*
* example:
* xxx
*/
@NameInMap("unionId")
public String unionId;
public static GetFamilySchoolConversationsRequest build(java.util.Map map) throws Exception {
GetFamilySchoolConversationsRequest self = new GetFamilySchoolConversationsRequest();
return TeaModel.build(map, self);
}
public GetFamilySchoolConversationsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public GetFamilySchoolConversationsRequest setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public GetFamilySchoolConversationsRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}