EMGroupMessageAck.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // EMGroupMessageAck.h
  3. // HyphenateSDK
  4. //
  5. // Created by 杜洁鹏 on 2019/6/3.
  6. // Copyright © 2019 easemob.com. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /**
  11. * \~chinese
  12. * 群组消息的回执。
  13. *
  14. * \~english
  15. * The group message receipt.
  16. */
  17. @interface EMGroupMessageAck : NSObject
  18. /**
  19. * \~chinese
  20. * 群组消息 ID。
  21. *
  22. * \~english
  23. * The group message ID.
  24. */
  25. @property (nonatomic, copy) NSString *messageId;
  26. /**
  27. * \~chinese
  28. * 群组消息已读回执 ID。
  29. *
  30. * \~english
  31. * The group message read receipt ID.
  32. */
  33. @property (nonatomic, copy) NSString *readAckId;
  34. /**
  35. * \~chinese
  36. * 群组消息发送者。
  37. *
  38. * \~english
  39. * The user that sends the group message.
  40. */
  41. @property (nonatomic, copy) NSString *from;
  42. /**
  43. * \~chinese
  44. * 群组消息内容。
  45. *
  46. * \~english
  47. * The group message content.
  48. */
  49. @property (nonatomic, copy) NSString *content;
  50. /**
  51. * \~chinese
  52. * 群组消息已读人数。
  53. *
  54. * \~english
  55. * The number of group members that have read the group message.
  56. */
  57. @property (nonatomic) int readCount;
  58. /**
  59. * \~chinese
  60. * 群组消息回执发送的 Unix 时间戳。
  61. *
  62. * \~english
  63. * The Unix timestamp for group message ack.
  64. */
  65. @property (nonatomic) long long timestamp;
  66. @end
  67. NS_ASSUME_NONNULL_END