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

20 lines
344 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 UpdateItemQuantityOption
{
/**
* 增量更新时幂等外部编码,只能包含十六进制字符(0-9,a-f,A-F)
**/
public $outer_biz_key;
/**
* 库存更新方式: 1是全量更新 2是增量更新默认是1。
**/
public $type;
}
?>