com.aliyun.dingtalkfinance_1_0.models.QueryAcquireRefundOrderResponseBody 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.dingtalkfinance_1_0.models;
import com.aliyun.tea.*;
public class QueryAcquireRefundOrderResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 10.01
*/
@NameInMap("amount")
public String amount;
/**
* This parameter is required.
*
* example:
* 2021-11-15 10:10:09
*/
@NameInMap("gmtCreate")
public String gmtCreate;
/**
* example:
* 2021-11-15 10:10:10
*/
@NameInMap("gmtRefund")
public String gmtRefund;
/**
* This parameter is required.
*
* example:
* 202111010001
*/
@NameInMap("instId")
public String instId;
/**
* This parameter is required.
*
* example:
* 202121241343151
*/
@NameInMap("orderNo")
public String orderNo;
/**
* This parameter is required.
*
* example:
* 202111020001
*/
@NameInMap("originOutTradeNo")
public String originOutTradeNo;
/**
* This parameter is required.
*
* example:
* r202111020001
*/
@NameInMap("outRefundNo")
public String outRefundNo;
/**
* This parameter is required.
*
* example:
* ALIPAY
*/
@NameInMap("payChannel")
public String payChannel;
/**
* This parameter is required.
*
* example:
* 13****09
*/
@NameInMap("payChannelAccountNo")
public String payChannelAccountNo;
/**
* This parameter is required.
*
* example:
* 123124
*/
@NameInMap("payerUserId")
public String payerUserId;
/**
* example:
* 备注
*/
@NameInMap("remark")
public String remark;
/**
* This parameter is required.
*
* example:
* SUCCESS
*/
@NameInMap("status")
public String status;
/**
* This parameter is required.
*
* example:
* 1001
*/
@NameInMap("subInstId")
public String subInstId;
/**
* This parameter is required.
*
* example:
* 餐费
*/
@NameInMap("title")
public String title;
public static QueryAcquireRefundOrderResponseBody build(java.util.Map map) throws Exception {
QueryAcquireRefundOrderResponseBody self = new QueryAcquireRefundOrderResponseBody();
return TeaModel.build(map, self);
}
public QueryAcquireRefundOrderResponseBody setAmount(String amount) {
this.amount = amount;
return this;
}
public String getAmount() {
return this.amount;
}
public QueryAcquireRefundOrderResponseBody setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public QueryAcquireRefundOrderResponseBody setGmtRefund(String gmtRefund) {
this.gmtRefund = gmtRefund;
return this;
}
public String getGmtRefund() {
return this.gmtRefund;
}
public QueryAcquireRefundOrderResponseBody setInstId(String instId) {
this.instId = instId;
return this;
}
public String getInstId() {
return this.instId;
}
public QueryAcquireRefundOrderResponseBody setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
public QueryAcquireRefundOrderResponseBody setOriginOutTradeNo(String originOutTradeNo) {
this.originOutTradeNo = originOutTradeNo;
return this;
}
public String getOriginOutTradeNo() {
return this.originOutTradeNo;
}
public QueryAcquireRefundOrderResponseBody setOutRefundNo(String outRefundNo) {
this.outRefundNo = outRefundNo;
return this;
}
public String getOutRefundNo() {
return this.outRefundNo;
}
public QueryAcquireRefundOrderResponseBody setPayChannel(String payChannel) {
this.payChannel = payChannel;
return this;
}
public String getPayChannel() {
return this.payChannel;
}
public QueryAcquireRefundOrderResponseBody setPayChannelAccountNo(String payChannelAccountNo) {
this.payChannelAccountNo = payChannelAccountNo;
return this;
}
public String getPayChannelAccountNo() {
return this.payChannelAccountNo;
}
public QueryAcquireRefundOrderResponseBody setPayerUserId(String payerUserId) {
this.payerUserId = payerUserId;
return this;
}
public String getPayerUserId() {
return this.payerUserId;
}
public QueryAcquireRefundOrderResponseBody setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public QueryAcquireRefundOrderResponseBody setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public QueryAcquireRefundOrderResponseBody setSubInstId(String subInstId) {
this.subInstId = subInstId;
return this;
}
public String getSubInstId() {
return this.subInstId;
}
public QueryAcquireRefundOrderResponseBody setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}