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

35 lines
430 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
/**
* data
* @author auto create
*/
class IsvResourceDo
{
/**
* 资源内容当资源类型为TEMPLATE时为空
**/
public $resource_content;
/**
* 资源id
**/
public $resource_id;
/**
* 资源名称
**/
public $resource_name;
/**
* 资源类型
**/
public $resource_type;
/**
* 资源url当资源类型为打印项时为空
**/
public $resource_url;
}
?>