com.aliyun.dingtalkedu_1_0.models.ListOrderRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class ListOrderRequest extends TeaModel {
/**
* example:
* 1647503420000
*/
@NameInMap("createTimeEnd")
public Long createTimeEnd;
/**
* example:
* 1647503420000
*/
@NameInMap("createTimeStart")
public Long createTimeStart;
/**
* This parameter is required.
*
* example:
* SM123124124
*/
@NameInMap("merchantId")
public String merchantId;
/**
* example:
* 2022312312333
*/
@NameInMap("orderNo")
public String orderNo;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* This parameter is required.
*
* example:
* 200
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* example:
* 1
*/
@NameInMap("scene")
public Long scene;
/**
* example:
* 20
*/
@NameInMap("status")
public Long status;
/**
* example:
* 202221312333
*/
@NameInMap("tradeNo")
public String tradeNo;
/**
* example:
* 123123123
*/
@NameInMap("userId")
public String userId;
public static ListOrderRequest build(java.util.Map map) throws Exception {
ListOrderRequest self = new ListOrderRequest();
return TeaModel.build(map, self);
}
public ListOrderRequest setCreateTimeEnd(Long createTimeEnd) {
this.createTimeEnd = createTimeEnd;
return this;
}
public Long getCreateTimeEnd() {
return this.createTimeEnd;
}
public ListOrderRequest setCreateTimeStart(Long createTimeStart) {
this.createTimeStart = createTimeStart;
return this;
}
public Long getCreateTimeStart() {
return this.createTimeStart;
}
public ListOrderRequest setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public ListOrderRequest setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
public ListOrderRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ListOrderRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public ListOrderRequest setScene(Long scene) {
this.scene = scene;
return this;
}
public Long getScene() {
return this.scene;
}
public ListOrderRequest setStatus(Long status) {
this.status = status;
return this;
}
public Long getStatus() {
return this.status;
}
public ListOrderRequest setTradeNo(String tradeNo) {
this.tradeNo = tradeNo;
return this;
}
public String getTradeNo() {
return this.tradeNo;
}
public ListOrderRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}