com.aliyun.dingtalklink_1_0.models.ListFollowerRequest 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.dingtalklink_1_0.models;
import com.aliyun.tea.*;
public class ListFollowerRequest extends TeaModel {
/**
* example:
* ding1234
*/
@NameInMap("accountId")
public String accountId;
/**
* example:
* 20
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* Rp3Rqcts7BE08y49Jr6iu6xW4iQ
*/
@NameInMap("nextToken")
public String nextToken;
public static ListFollowerRequest build(java.util.Map map) throws Exception {
ListFollowerRequest self = new ListFollowerRequest();
return TeaModel.build(map, self);
}
public ListFollowerRequest setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public ListFollowerRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListFollowerRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
}