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

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

There is a newer version: 2.1.30
Show 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 {
    // 精确匹配的字段。1:匹配用户名称。不填则为模糊匹配
    @NameInMap("fullMatchField")
    public Integer fullMatchField;

    // 分页查询锚点
    @NameInMap("offset")
    public Integer offset;

    // 用户名称、名称拼音或英文名称
    @NameInMap("queryWord")
    public String queryWord;

    // 分页长度
    @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