EMRecallMessageInfo.h 670 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // EMRecallMessageInfo.h
  3. // HyphenateChat
  4. //
  5. // Created by zhangchong on 2022/1/20.
  6. // Copyright © 2022 easemob.com. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "EMChatMessage.h"
  10. /**
  11. * \~chinese
  12. * 消息撤回详情类。
  13. *
  14. * \~english
  15. * The message recall information object.
  16. */
  17. @interface EMRecallMessageInfo : NSObject
  18. /*!
  19. * \~chinese
  20. * 消息撤回者
  21. *
  22. * \~english
  23. * Users who recall messages
  24. */
  25. @property (nonatomic, copy) NSString * _Nonnull recallBy;
  26. /*!
  27. * \~chinese
  28. * 撤回的消息
  29. *
  30. * \~english
  31. * A recall message
  32. */
  33. @property (nonatomic, strong) EMChatMessage * _Nonnull recallMessage;
  34. @end