ServiceConversationModel.php 440 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * result
  4. * @author auto create
  5. */
  6. class ServiceConversationModel
  7. {
  8. /**
  9. * conversationType
  10. **/
  11. public $conversation_type;
  12. /**
  13. * ownerDingtalkId
  14. **/
  15. public $owner_dingtalk_id;
  16. /**
  17. * ownerName
  18. **/
  19. public $owner_name;
  20. /**
  21. * ownerNick
  22. **/
  23. public $owner_nick;
  24. /**
  25. * ownerUserid
  26. **/
  27. public $owner_userid;
  28. /**
  29. * title
  30. **/
  31. public $title;
  32. /**
  33. * type
  34. **/
  35. public $type;
  36. }
  37. ?>