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

45 lines
548 B
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* data
* @author auto create
*/
class CustomAreaResult
{
/**
* 自定义区id
**/
public $custom_area_id;
/**
* 自定义区名称
**/
public $custom_area_name;
/**
* 自定义区url
**/
public $custom_area_url;
/**
* 变量
**/
public $keys;
/**
* 标准模板名称
**/
public $standard_template_id;
/**
* 标准模板url
**/
public $standard_template_url;
/**
* 用户模板id等同于mystdtemplates.get中返回的用户模板id
**/
public $user_template_id;
}
?>