洛阳学员端
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.

34 lines
651 B

7 months ago
  1. //
  2. // DTFNFCIdentityProtocol.h
  3. // DTFUtility
  4. //
  5. // Created by mengbingchuan on 2023/6/8.
  6. // Copyright © 2023 com.alipay.iphoneclient.zoloz. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "DTFRPCProxyProtocol.h"
  10. #import "ZIMResponse.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @protocol DTFNFCIdentityProtocol <NSObject>
  13. - (void)initSDK;
  14. - (void)initIPv6;
  15. - (NSString *)getVersion;
  16. - (void)setRpcProxy:(id<DTFRPCProxyProtocol>)proxy;
  17. - (NSDictionary *)getMetaInfo;
  18. - (void)verifyWith:(NSString *)zimId
  19. extParams:(NSDictionary *)params
  20. onCompletion:(void (^)(ZIMResponse *response))callback;
  21. @end
  22. NS_ASSUME_NONNULL_END