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

45 lines
485 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 TmcMessage
{
/**
* 消息详细内容格式为JSON/XML
**/
public $content;
/**
* 消息ID
**/
public $id;
/**
* 消息发布者的AppKey
**/
public $pub_app_key;
/**
* 消息发布时间
**/
public $pub_time;
/**
* 消息所属主题
**/
public $topic;
/**
* 消息所属的用户编号
**/
public $user_id;
/**
* 用户的昵称
**/
public $user_nick;
}
?>