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

60 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 PromotionDetail
{
/**
* 优惠金额(免运费、限时打折时为空),单位:元
**/
public $discount_fee;
/**
* 赠品的宝贝id
**/
public $gift_item_id;
/**
* 满就送商品时,所送商品的名称
**/
public $gift_item_name;
/**
* 满就送礼物的礼物数量
**/
public $gift_item_num;
/**
* 交易的主订单或子订单号
**/
public $id;
/**
* 若优惠项在主订单上,返回子订单的分摊信息
**/
public $kd_child_discount_fee;
/**
* 分摊优惠金额(免运费、限时打折时为空),单位:元
**/
public $kd_discount_fee;
/**
* 优惠活动的描述
**/
public $promotion_desc;
/**
* 优惠id(由营销工具id、优惠活动id和优惠详情id组成结构为营销工具id-优惠活动id_优惠详情id如mjs-123024_211143
**/
public $promotion_id;
/**
* 优惠信息的名称
**/
public $promotion_name;
}
?>