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

com.aliyun.dingtalkbizfinance_1_0.models.QueryCustomerInfoRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;

import com.aliyun.tea.*;

public class QueryCustomerInfoRequest extends TeaModel {
    @NameInMap("keyword")
    public String keyword;

    /**
     * example:
     * 

1

*/ @NameInMap("pageNumber") public Long pageNumber; /** * example: *

20

*/ @NameInMap("pageSize") public Long pageSize; public static QueryCustomerInfoRequest build(java.util.Map map) throws Exception { QueryCustomerInfoRequest self = new QueryCustomerInfoRequest(); return TeaModel.build(map, self); } public QueryCustomerInfoRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public QueryCustomerInfoRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public QueryCustomerInfoRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy