TopSendConversationMsgRequest.php 408 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * request
  4. * @author auto create
  5. */
  6. class TopSendConversationMsgRequest
  7. {
  8. /**
  9. * 占位符替换词
  10. **/
  11. public $attributes;
  12. /**
  13. * 班级id
  14. **/
  15. public $class_id;
  16. /**
  17. * 随机数,在小程序打开的时候传入。需要透传过来
  18. **/
  19. public $nonce;
  20. /**
  21. * 接收者userid
  22. **/
  23. public $receiver_user_ids;
  24. /**
  25. * 模板id
  26. **/
  27. public $template_id;
  28. }
  29. ?>