NIMRedPacketRequest.h 555 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // NIMRedPacketRequest.h
  3. // NIMLib
  4. //
  5. // Created by Netease.
  6. // Copyright © 2017年 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /**
  11. * 红包服务类型
  12. */
  13. typedef NS_ENUM(NSInteger, NIMRedPacketServiceType)
  14. {
  15. /**
  16. * 金融魔方红包
  17. */
  18. NIMRedPacketServiceTypeJRMF = 1,
  19. };
  20. /**
  21. * 红包Token请求
  22. */
  23. @interface NIMRedPacketTokenRequest : NSObject
  24. /**
  25. * 红包服务类型
  26. */
  27. @property (nonatomic, assign) NIMRedPacketServiceType type;
  28. @end
  29. NS_ASSUME_NONNULL_END