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

20 lines
453 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
/**
* 批量更新商品/SKU发货时间的备选项
* @author auto create
*/
class UpdateItemShipTimeOption
{
/**
* 0代表清空匹配的SKU发货时间数据或者商品发货时间数据1代表固定发货时间2代表相对发货时间
**/
public $ship_time_type;
/**
* 更新类型默认不填时更新sku0表示更新sku1表示更新商品维度其他值均非法
**/
public $update_type;
}
?>