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

com.aliyun.dingtalkorg_culture_1_0.models.QueryOrgHonorsRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkorg_culture_1_0.models;

import com.aliyun.tea.*;

public class QueryOrgHonorsRequest extends TeaModel {
    // 分页获取数据时,数据的数量,默认为20,最大可传入100
    @NameInMap("maxResults")
    public Integer maxResults;

    // 分页获取数据的标记,第一页调用时传0,非第一页传入上次调用本接口返回值中的nextToken
    @NameInMap("nextToken")
    public String nextToken;

    public static QueryOrgHonorsRequest build(java.util.Map map) throws Exception {
        QueryOrgHonorsRequest self = new QueryOrgHonorsRequest();
        return TeaModel.build(map, self);
    }

    public QueryOrgHonorsRequest setMaxResults(Integer maxResults) {
        this.maxResults = maxResults;
        return this;
    }
    public Integer getMaxResults() {
        return this.maxResults;
    }

    public QueryOrgHonorsRequest setNextToken(String nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public String getNextToken() {
        return this.nextToken;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy