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

30 lines
631 B
PHP
Raw 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 ModularDescInfo
{
/**
* 旧描述与新描述共存时间(切换时间)。
**/
public $dead_line;
/**
* 运营定义的该商品所属类目的类目级别模块信息列表,列表顺序即为模块顺序。
**/
public $itm_dsc_modules;
/**
* 默认值为false如果此字段为true则卖家上传的模块化的描述信息可以自定义排序。
**/
public $user_order;
/**
* 用户自定义模块数量最大值限制。类目级别模块+用户级别模块必须小于<20
**/
public $usr_def_max_num;
}
?>