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

com.aliyun.dingtalkdoc_2_0.models.QueryRecentListRequest 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.dingtalkdoc_2_0.models;

import com.aliyun.tea.*;

public class QueryRecentListRequest extends TeaModel {
    @NameInMap("creatorType")
    public Integer creatorType;

    @NameInMap("fileType")
    public Integer fileType;

    /**
     * 

This parameter is required.

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

This parameter is required.

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

This parameter is required.

*/ @NameInMap("recentType") public Integer recentType; public static QueryRecentListRequest build(java.util.Map map) throws Exception { QueryRecentListRequest self = new QueryRecentListRequest(); return TeaModel.build(map, self); } public QueryRecentListRequest setCreatorType(Integer creatorType) { this.creatorType = creatorType; return this; } public Integer getCreatorType() { return this.creatorType; } public QueryRecentListRequest setFileType(Integer fileType) { this.fileType = fileType; return this; } public Integer getFileType() { return this.fileType; } public QueryRecentListRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryRecentListRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryRecentListRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public QueryRecentListRequest setRecentType(Integer recentType) { this.recentType = recentType; return this; } public Integer getRecentType() { return this.recentType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy