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

com.aliyun.dingtalkcontact_1_0.models.SearchUserRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontact_1_0.models;

import com.aliyun.tea.*;

public class SearchUserRequest extends TeaModel {
    /**
     * example:
     * 

1

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

This parameter is required.

* * example: *

0

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

This parameter is required.

* * example: *

张三

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

This parameter is required.

* * example: *

10

*/ @NameInMap("size") public Integer size; public static SearchUserRequest build(java.util.Map map) throws Exception { SearchUserRequest self = new SearchUserRequest(); return TeaModel.build(map, self); } public SearchUserRequest setFullMatchField(Integer fullMatchField) { this.fullMatchField = fullMatchField; return this; } public Integer getFullMatchField() { return this.fullMatchField; } public SearchUserRequest setOffset(Integer offset) { this.offset = offset; return this; } public Integer getOffset() { return this.offset; } public SearchUserRequest setQueryWord(String queryWord) { this.queryWord = queryWord; return this; } public String getQueryWord() { return this.queryWord; } public SearchUserRequest setSize(Integer size) { this.size = size; return this; } public Integer getSize() { return this.size; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy