SnsOpenGroupInfoResponse.php 409 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 结果数据
  4. * @author auto create
  5. */
  6. class SnsOpenGroupInfoResponse
  7. {
  8. /**
  9. * 群头像
  10. **/
  11. public $icon;
  12. /**
  13. * 会话ID
  14. **/
  15. public $open_conversation_id;
  16. /**
  17. * 群主id
  18. **/
  19. public $owner_unionid;
  20. /**
  21. * 机器人发消息地址
  22. **/
  23. public $robot_web_hook_url;
  24. /**
  25. * 模板id
  26. **/
  27. public $template_id;
  28. /**
  29. * 群名称
  30. **/
  31. public $title;
  32. }
  33. ?>