WFCCFriendRequest.h 752 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // WFCCFriendRequest.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/10/17.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "WFCCJsonSerializer.h"
  10. /**
  11. 好友请求
  12. */
  13. @interface WFCCFriendRequest : WFCCJsonSerializer
  14. /**
  15. 方向
  16. */
  17. @property(nonatomic, assign)int direction;
  18. /**
  19. ID
  20. */
  21. @property(nonatomic, strong)NSString *target;
  22. /**
  23. 请求说明
  24. */
  25. @property(nonatomic, strong)NSString *reason;
  26. /**
  27. 请求扩展信息
  28. */
  29. @property(nonatomic, strong)NSString *extra;
  30. /**
  31. 接受状态
  32. */
  33. @property(nonatomic, assign)int status;
  34. /**
  35. 已读
  36. */
  37. @property(nonatomic, assign)int readStatus;
  38. /**
  39. 发起时间
  40. */
  41. @property(nonatomic, assign)long long timestamp;
  42. @end