// // EPClientAPIBridge.h // YuMi // // Deprecated: replaced by Swift EPConfigAPI // #import NS_ASSUME_NONNULL_BEGIN /// Bridge to wrap existing Objective-C APIs for Swift consumers __attribute__((deprecated("Use EPConfigAPI (Swift) instead"))) @interface EPClientAPIBridge : NSObject /// Call Api.clientInitConfig and forward raw dictionary and status + (void)clientInit:(void(^)(NSDictionary * _Nullable data, NSInteger code, NSString * _Nullable msg))completion; /// Call ClientConfig.clientConfig; returns code 200 on success (no payload) + (void)clientConfig:(void(^)(NSDictionary * _Nullable data, NSInteger code, NSString * _Nullable msg))completion; @end NS_ASSUME_NONNULL_END