You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
829 B
24 lines
829 B
//
|
|
// APBRequest.h
|
|
// BioAuthEngine
|
|
//
|
|
// Created by yukun.tyk on 11/9/15.
|
|
// Copyright © 2015 DTF. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
@class UIViewController;
|
|
|
|
extern NSString *const kKeepUploadPageKey; //extInfo key: 生物识别产品是否要保持上传界面,默认不保持
|
|
|
|
@interface APBRequest : NSObject
|
|
|
|
@property(nonatomic, weak, readonly)UIViewController *vc; //显示的viewController
|
|
@property(nonatomic, copy, readonly)NSString *protocol; //服务端下发的配置参数
|
|
@property(nonatomic, strong, readonly)NSDictionary *extInfo; //扩展业务参数
|
|
|
|
- (instancetype)initWithViewController:(UIViewController *)vc
|
|
protocolInfo:(NSString *)protocol
|
|
extInfo:(NSDictionary *)ext;
|
|
|
|
@end
|