12345678910111213141516171819202122232425262728293031323334 |
- //
- // DTFNFCIdentityProtocol.h
- // DTFUtility
- //
- // Created by mengbingchuan on 2023/6/8.
- // Copyright © 2023 com.alipay.iphoneclient.zoloz. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "DTFRPCProxyProtocol.h"
- #import "ZIMResponse.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol DTFNFCIdentityProtocol <NSObject>
- - (void)initSDK;
- - (void)initIPv6;
- - (NSString *)getVersion;
- - (void)setRpcProxy:(id<DTFRPCProxyProtocol>)proxy;
- - (NSDictionary *)getMetaInfo;
- - (void)verifyWith:(NSString *)zimId
- extParams:(NSDictionary *)params
- onCompletion:(void (^)(ZIMResponse *response))callback;
- @end
- NS_ASSUME_NONNULL_END
|