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

40 lines
642 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 UniqueDiscountCodeRequest
{
/**
* 一口价。单位分。对应 discountType=8 时必传
**/
public $discount_price;
/**
* 折扣率 范围(0,100) 比如78折传788折传80。对应 discountType=7时必传
**/
public $discount_rate;
/**
* 折扣码类型, 7为折扣率码8为一口价码
**/
public $discount_type;
/**
* 过期时间。不传默认为当前时间+90天。最大支持有效期为90天后。
**/
public $expire_time;
/**
* 商品编码
**/
public $sku_code;
/**
* 门店编码
**/
public $store_id;
}
?>