com.aliyun.dingtalkwms_1_0.models.QueryGoodsListRequest 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.dingtalkwms_1_0.models;
import com.aliyun.tea.*;
public class QueryGoodsListRequest extends TeaModel {
/**
* example:
* 1631289600000
*/
@NameInMap("endTimeInMills")
public Long endTimeInMills;
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Long maxResults;
/**
* example:
* 1
*/
@NameInMap("nextToken")
public Long nextToken;
/**
* example:
* 1631289600000
*/
@NameInMap("startTimeInMills")
public Long startTimeInMills;
public static QueryGoodsListRequest build(java.util.Map map) throws Exception {
QueryGoodsListRequest self = new QueryGoodsListRequest();
return TeaModel.build(map, self);
}
public QueryGoodsListRequest setEndTimeInMills(Long endTimeInMills) {
this.endTimeInMills = endTimeInMills;
return this;
}
public Long getEndTimeInMills() {
return this.endTimeInMills;
}
public QueryGoodsListRequest setMaxResults(Long maxResults) {
this.maxResults = maxResults;
return this;
}
public Long getMaxResults() {
return this.maxResults;
}
public QueryGoodsListRequest setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public QueryGoodsListRequest setStartTimeInMills(Long startTimeInMills) {
this.startTimeInMills = startTimeInMills;
return this;
}
public Long getStartTimeInMills() {
return this.startTimeInMills;
}
}