shop-php/extend/taobao/domain/TradeConfirmFee.php

25 lines
626 B
PHP
Raw Normal View History

2023-10-10 14:54:50 +08:00
<?php
/**
* 获取到的交易确认收货费用
* @author auto create
*/
class TradeConfirmFee
{
/**
* 确认收货的金额(不包含邮费)。精确到2位小数;单位:元。如:200.07,表示:200元7分
**/
public $confirm_fee;
/**
* 需确认收货的邮费当不是最后一笔收货或者没有邮费时是0.00。精确到2位小数;单位:元。如:200.07,表示:200元7分
**/
public $confirm_post_fee;
/**
* 是否是最后一笔订单只对子订单有效当其他子订单都是交易完成时返回true否则false
**/
public $is_last_order;
}
?>