ServiceGroupCreateResponse.php 255 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 结果
  4. * @author auto create
  5. */
  6. class ServiceGroupCreateResponse
  7. {
  8. /**
  9. * 开放的会话chatId
  10. **/
  11. public $chat_id;
  12. /**
  13. * 开放的会话ID
  14. **/
  15. public $open_conversation_id;
  16. /**
  17. * 群链接
  18. **/
  19. public $url;
  20. }
  21. ?>