REAPI/extend/sdk/taobao/top/domain/QueryRefundStatusResponse.php
2024-09-29 15:43:18 +08:00

35 lines
669 B
PHP

<?php
/**
* 数组对象
* @author auto create
*/
class QueryRefundStatusResponse
{
/**
* 更新时间。格式:yyyy-MM-dd HH:mm:ss
**/
public $modified;
/**
* 子订单号
**/
public $oid;
/**
* 退款单id
**/
public $refund_id;
/**
* 退款状态。可选值WAIT_SELLER_AGREE(买家已经申请退款,等待卖家同意) WAIT_BUYER_RETURN_GOODS(卖家已经同意退款,等待买家退货) WAIT_SELLER_CONFIRM_GOODS(买家已经退货,等待卖家确认收货) SELLER_REFUSE_BUYER(卖家拒绝退款) CLOSED(退款关闭) SUCCESS(退款成功)
**/
public $status;
/**
* 淘宝交易单号
**/
public $tid;
}
?>