39 lines
555 B
Objective-C
39 lines
555 B
Objective-C
//
|
|
// 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
|