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