DelRelationReq.php 269 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 关系
  4. * @author auto create
  5. */
  6. class DelRelationReq
  7. {
  8. /**
  9. * 接受者的im的openid
  10. **/
  11. public $dst_im_openid;
  12. /**
  13. * 是否双向关系
  14. **/
  15. public $is_double_way;
  16. /**
  17. * 发送者的im的openid
  18. **/
  19. public $src_im_openid;
  20. }
  21. ?>