// // TDAutoTrackSuperProperty.h // ThinkingSDK // // Created by Yangxiongon 2022/6/19. // #import #import "TDAutoTrackConst.h" NS_ASSUME_NONNULL_BEGIN @interface TDAutoTrackSuperProperty : NSObject - (void)registerSuperProperties:(NSDictionary *)properties withType:(TDAutoTrackEventType)type; - (NSDictionary *)currentSuperPropertiesWithEventName:(NSString *)eventName; - (void)registerDynamicSuperProperties:(NSDictionary *(^)(TDAutoTrackEventType, NSDictionary *))dynamicSuperProperties; - (NSDictionary *)obtainDynamicSuperPropertiesWithType:(TDAutoTrackEventType)type currentProperties:(NSDictionary *)properties; /// Only used for auto track in Unity3D environment /// - Parameter dynamicSuperProperties: dynamic properties - (void)registerAutoTrackDynamicProperties:(NSDictionary *(^ _Nullable)(void))dynamicSuperProperties; /// Only used for auto track in Unity3D environment - (NSDictionary *)obtainAutoTrackDynamicSuperProperties; - (void)clearSuperProperties; @end NS_ASSUME_NONNULL_END