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

30 lines
835 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库存时候的SKU库存对象如果没有SKU或者不更新SKU库存可以不填;查找SKU目前支持ID属性串和商家编码三种模式建议选用一种最合适的切勿滥用一次调用中如果混合使用更新结果不可预期
* @author auto create
*/
class UpdateSkuQuantity
{
/**
* Sku的商家外部id用于指定被修改库存的SKU
**/
public $outer_id;
/**
* Sku属性串。格式:pid:vid;pid:vid,如: 1627207:3232483;1630696:3284570,表示机身颜色:军绿色;手机套餐:一电一充用于指定被修改库存的SKU
**/
public $properties;
/**
* SKU属于这个sku的商品的库存增量编辑方式支持正数、负数
**/
public $quantity;
/**
* SkuID用于指定被修改库存的
**/
public $sku_id;
}
?>