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

com.aliyun.dingtalkedu_1_0.models.ListOrderResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class ListOrderResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("list") public java.util.List list; @NameInMap("total") public Long total; public static ListOrderResponseBody build(java.util.Map map) throws Exception { ListOrderResponseBody self = new ListOrderResponseBody(); return TeaModel.build(map, self); } public ListOrderResponseBody setList(java.util.List list) { this.list = list; return this; } public java.util.List getList() { return this.list; } public ListOrderResponseBody setTotal(Long total) { this.total = total; return this; } public Long getTotal() { return this.total; } public static class ListOrderResponseBodyList extends TeaModel { /** *

This parameter is required.

*/ @NameInMap("actualAmount") public Long actualAmount; /** *

This parameter is required.

*/ @NameInMap("buyerId") public String buyerId; /** *

This parameter is required.

*/ @NameInMap("corpId") public String corpId; /** *

This parameter is required.

*/ @NameInMap("createTime") public Long createTime; /** *

This parameter is required.

*/ @NameInMap("endTime") public Long endTime; /** *

This parameter is required.

*/ @NameInMap("orderNo") public String orderNo; /** *

This parameter is required.

*/ @NameInMap("payTime") public Long payTime; @NameInMap("refundNo") public String refundNo; /** *

This parameter is required.

*/ @NameInMap("scene") public Long scene; /** *

This parameter is required.

*/ @NameInMap("startTime") public Long startTime; /** *

This parameter is required.

*/ @NameInMap("status") public Long status; /** *

This parameter is required.

*/ @NameInMap("tradeNo") public String tradeNo; /** *

This parameter is required.

*/ @NameInMap("userId") public String userId; public static ListOrderResponseBodyList build(java.util.Map map) throws Exception { ListOrderResponseBodyList self = new ListOrderResponseBodyList(); return TeaModel.build(map, self); } public ListOrderResponseBodyList setActualAmount(Long actualAmount) { this.actualAmount = actualAmount; return this; } public Long getActualAmount() { return this.actualAmount; } public ListOrderResponseBodyList setBuyerId(String buyerId) { this.buyerId = buyerId; return this; } public String getBuyerId() { return this.buyerId; } public ListOrderResponseBodyList setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public ListOrderResponseBodyList setCreateTime(Long createTime) { this.createTime = createTime; return this; } public Long getCreateTime() { return this.createTime; } public ListOrderResponseBodyList setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public ListOrderResponseBodyList setOrderNo(String orderNo) { this.orderNo = orderNo; return this; } public String getOrderNo() { return this.orderNo; } public ListOrderResponseBodyList setPayTime(Long payTime) { this.payTime = payTime; return this; } public Long getPayTime() { return this.payTime; } public ListOrderResponseBodyList setRefundNo(String refundNo) { this.refundNo = refundNo; return this; } public String getRefundNo() { return this.refundNo; } public ListOrderResponseBodyList setScene(Long scene) { this.scene = scene; return this; } public Long getScene() { return this.scene; } public ListOrderResponseBodyList setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public ListOrderResponseBodyList setStatus(Long status) { this.status = status; return this; } public Long getStatus() { return this.status; } public ListOrderResponseBodyList setTradeNo(String tradeNo) { this.tradeNo = tradeNo; return this; } public String getTradeNo() { return this.tradeNo; } public ListOrderResponseBodyList setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy