com.aliyun.linkedmall20230930.models.OrderListResult Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.linkedmall20230930.models;
import com.aliyun.tea.*;
public class OrderListResult extends TeaModel {
@NameInMap("orderList")
public java.util.List orderList;
/**
* example:
* 3239281273464326823
*/
@NameInMap("requestId")
public String requestId;
/**
* example:
* 24
*/
@NameInMap("total")
public Integer total;
public static OrderListResult build(java.util.Map map) throws Exception {
OrderListResult self = new OrderListResult();
return TeaModel.build(map, self);
}
public OrderListResult setOrderList(java.util.List orderList) {
this.orderList = orderList;
return this;
}
public java.util.List getOrderList() {
return this.orderList;
}
public OrderListResult setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public OrderListResult setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
}