
com.aliyun.dingtalkdoc_1_0.models.GetRecentEditDocsRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_1_0.models;
import com.aliyun.tea.*;
public class GetRecentEditDocsRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*/
@NameInMap("operatorId")
public String operatorId;
public static GetRecentEditDocsRequest build(java.util.Map map) throws Exception {
GetRecentEditDocsRequest self = new GetRecentEditDocsRequest();
return TeaModel.build(map, self);
}
public GetRecentEditDocsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public GetRecentEditDocsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public GetRecentEditDocsRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy