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

45 lines
1.0 KiB
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 PriceProtection
{
/**
* 价保申请时间
**/
public $created_time;
/**
* 平台出资金额。精确到2位小数;单位:元。如:200.07,表示:200元7分
**/
public $platform_refund_fee;
/**
* 平台出资状态。1表示无需创建2表示待创建3表示进行中4表示成功5表示失败6表示关闭。只有4是已成功出资。
**/
public $platform_refund_status;
/**
* 价保单id标识一次价保
**/
public $price_protection_id;
/**
* 价保场景。"pp"表示价保,"mgbp"表示买贵必赔,"pc"表示价差赔付。
**/
public $scene;
/**
* 商家出资金额。精确到2位小数;单位:元。如:200.07,表示:200元7分
**/
public $seller_refund_fee;
/**
* 商家出资状态。1表示无需创建2表示待创建3表示进行中4表示成功5表示失败6表示关闭。只有4是已成功出资。
**/
public $seller_refund_status;
}
?>