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

25 lines
496 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更新OuterId时候用的数据
* @author auto create
*/
class UpdateSkuOuterId
{
/**
* 被更新的Sku的商家外部id
**/
public $outer_id;
/**
* Sku属性串。格式:pid:vid;pid:vid,如: 1627207:3232483;1630696:3284570,表示机身颜色:军绿色;手机套餐:一电一充如果填写将以属性对形式查找被更新SKU
**/
public $properties;
/**
* SkuID如果填写将以SKUID查找被更新的SKU
**/
public $sku_id;
}
?>