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

com.aliyun.dingtalkim_1_0.models.GetFamilySchoolConversationsRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy