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

com.aliyun.dingtalkcontent_1_0.models.PageFeedRequest 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.dingtalkcontent_1_0.models;

import com.aliyun.tea.*;

public class PageFeedRequest extends TeaModel {
    @NameInMap("body")
    public java.util.List body;

    /**
     * 

This parameter is required.

* * example: *

10

*/ @NameInMap("maxResults") public Integer maxResults; /** *

This parameter is required.

* * example: *

50730********40554

*/ @NameInMap("mcnId") public String mcnId; /** *

This parameter is required.

* * example: *

10

*/ @NameInMap("nextToken") public Integer nextToken; public static PageFeedRequest build(java.util.Map map) throws Exception { PageFeedRequest self = new PageFeedRequest(); return TeaModel.build(map, self); } public PageFeedRequest setBody(java.util.List body) { this.body = body; return this; } public java.util.List getBody() { return this.body; } public PageFeedRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public PageFeedRequest setMcnId(String mcnId) { this.mcnId = mcnId; return this; } public String getMcnId() { return this.mcnId; } public PageFeedRequest setNextToken(Integer nextToken) { this.nextToken = nextToken; return this; } public Integer getNextToken() { return this.nextToken; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy