REAPI/extend/sdk/taobao/top/domain/SellerAuthorize.php

25 lines
348 B
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* 里面有3个数组Brand[]品牌列表,ItemCat[] 类目列表XinpinItemCat[] 针对于C卖家新品类目列表
* @author auto create
*/
class SellerAuthorize
{
/**
* 品牌
**/
public $brands;
/**
* 商品类目结构
**/
public $item_cats;
/**
* 商品类目结构
**/
public $xinpin_item_cats;
}
?>