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

65 lines
1009 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 查询到的退款留言/凭证列表
* @author auto create
*/
class RefundMessage
{
/**
* 留言内容。最大长度: 400个字节
**/
public $content;
/**
* 留言创建时间。格式:yyyy-MM-dd HH:mm:ss
**/
public $created;
/**
* 留言编号
**/
public $id;
/**
* 退款类型NORMAL普通留言RETURN_GOODS_APPROVED卖家留退货地址时留言如果为RETURN_GOODS_APPROVED则退款留言中有卖家收货地址
**/
public $message_type;
/**
* 留言者编号
**/
public $owner_id;
/**
* 留言者昵称
**/
public $owner_nick;
/**
* 留言者openid
**/
public $owner_open_uid;
/**
* 留言者身份1代表买家2代表卖家3代表小二
**/
public $owner_role;
/**
* 图片链接
**/
public $pic_urls;
/**
* 退款编号。
**/
public $refund_id;
/**
* 退款阶段可选值onsale售中, aftersale售后
**/
public $refund_phase;
}
?>