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

45 lines
548 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
/**
* 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;
}
?>