AddRelationReq.php 397 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 关系
  4. * @author auto create
  5. */
  6. class AddRelationReq
  7. {
  8. /**
  9. * 时间戳精确到毫秒
  10. **/
  11. public $begin_time;
  12. /**
  13. * 接收者钉钉的openid
  14. **/
  15. public $dst_im_openid;
  16. /**
  17. * 时间戳精确到毫秒
  18. **/
  19. public $end_time;
  20. /**
  21. * 是否双向关系
  22. **/
  23. public $is_double_way;
  24. /**
  25. * 发送者钉钉的openid
  26. **/
  27. public $src_im_openid;
  28. }
  29. ?>