// // TAThirdPartySyncProtocol.h // ThinkingSDKDEMO // // Created by wwango on 2022/2/17. // Copyright © 2022 thinking. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol TAThinkingTrackProtocol - (void)track:(NSString *)event properties:(nullable NSDictionary *)propertieDict; - (NSString *)getDistinctId; - (NSString *)getAccountId; @end @protocol TAThirdPartySyncProtocol - (void)syncThirdData:(id)taInstance; - (void)syncThirdData:(id)taInstance property:(NSDictionary *)property; @end @protocol TAThirdPartyProtocol - (void)enableThirdPartySharing:(NSNumber *)type instance:(id)instance; - (void)enableThirdPartySharing:(NSNumber *)type instance:(id)instance property:(NSDictionary *)property; @end NS_ASSUME_NONNULL_END