TribeTextMessage.php 332 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 消息列表
  4. * @author auto create
  5. */
  6. class TribeTextMessage
  7. {
  8. /**
  9. * 发送方userid。必须为本app已导入的账号
  10. **/
  11. public $from_id;
  12. /**
  13. * 消息
  14. **/
  15. public $message;
  16. /**
  17. * 消息时间。UTC时间,精确到秒。时间范围必须在当前时间30天内
  18. **/
  19. public $time;
  20. }
  21. ?>