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

35 lines
488 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 ItemPromotionRule
{
/**
* 规则生效结束时间
**/
public $end_time;
/**
* 规则描叙信息
**/
public $message;
/**
* 规则名称
**/
public $name;
/**
* 规则生效开始时间
**/
public $start_time;
/**
* 规则类型常见有SKU锁定规则,下架锁定规则,库存减少锁定规则,库存禁止修改规则,一口价禁止修改规则
**/
public $type;
}
?>