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

com.aliyun.dingtalkpedia_1_0.models.PediaWordsSearchRequest 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.dingtalkpedia_1_0.models;

import com.aliyun.tea.*;

public class PediaWordsSearchRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

1

*/ @NameInMap("pageNumber") public Integer pageNumber; /** *

This parameter is required.

* * example: *

1

*/ @NameInMap("pageSize") public Integer pageSize; /** *

This parameter is required.

* * example: *

1

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

This parameter is required.

* * example: *

121213213

*/ @NameInMap("userId") public String userId; /** * example: *

企业百科

* * if can be null: *

false

*/ @NameInMap("wordName") public String wordName; public static PediaWordsSearchRequest build(java.util.Map map) throws Exception { PediaWordsSearchRequest self = new PediaWordsSearchRequest(); return TeaModel.build(map, self); } public PediaWordsSearchRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public PediaWordsSearchRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public PediaWordsSearchRequest setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public PediaWordsSearchRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public PediaWordsSearchRequest setWordName(String wordName) { this.wordName = wordName; return this; } public String getWordName() { return this.wordName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy