SDK_UnityMoney/Assets/Plugins/iOS/ThinkingSDK/Source/AutoTrack/Event/TDAutoTrackEvent.h

28 lines
731 B
Objective-C

//
// TDAutoTrackEvent.h
// ThinkingSDK
//
// Created by Yangxiongon 2022/6/15.
//
#import "TDTrackEvent.h"
#import "TDConstant.h"
#import "TDAutoTrackConst.h"
NS_ASSUME_NONNULL_BEGIN
@interface TDAutoTrackEvent : TDTrackEvent
/// It is used to record the dynamic public properties of automatic collection events. The dynamic public properties need to be obtained in the current thread where the event occurs
@property (nonatomic, strong) NSDictionary *autoDynamicSuperProperties;
/// Static public property for logging autocollection events
@property (nonatomic, strong) NSDictionary *autoSuperProperties;
/// Returns the automatic collection type
- (TDAutoTrackEventType)autoTrackEventType;
@end
NS_ASSUME_NONNULL_END