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

com.aliyun.dingtalkactivity_1_0.models.ListActivityRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkactivity_1_0.models;

import com.aliyun.tea.*;

public class ListActivityRequest extends TeaModel {
    /**
     * example:
     * 

20

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

Rp3Rqcts7BE08y49Jr6iu6xW4iQ

*/ @NameInMap("nextToken") public String nextToken; public static ListActivityRequest build(java.util.Map map) throws Exception { ListActivityRequest self = new ListActivityRequest(); return TeaModel.build(map, self); } public ListActivityRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListActivityRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy