com.aliyun.dingtalkyida_1_0.models.ListCommodityRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class ListCommodityRequest extends TeaModel {
/**
* example:
* accessKey
*/
@NameInMap("accessKey")
public String accessKey;
/**
* example:
* callerUid
*/
@NameInMap("callerUid")
public String callerUid;
/**
* example:
* currentPage
*/
@NameInMap("pageNumber")
public Integer pageNumber;
/**
* example:
* pageSize
*/
@NameInMap("pageSize")
public Integer pageSize;
public static ListCommodityRequest build(java.util.Map map) throws Exception {
ListCommodityRequest self = new ListCommodityRequest();
return TeaModel.build(map, self);
}
public ListCommodityRequest setAccessKey(String accessKey) {
this.accessKey = accessKey;
return this;
}
public String getAccessKey() {
return this.accessKey;
}
public ListCommodityRequest setCallerUid(String callerUid) {
this.callerUid = callerUid;
return this;
}
public String getCallerUid() {
return this.callerUid;
}
public ListCommodityRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListCommodityRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}