mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 04:41:43 +03:00
19 lines
331 B
Objective-C
19 lines
331 B
Objective-C
#import "MSLogWithNameAndProperties.h"
|
|
|
|
@class MSEventProperties;
|
|
@class MSMetadataExtension;
|
|
|
|
@interface MSEventLog : MSLogWithNameAndProperties
|
|
|
|
/**
|
|
* Unique identifier for this event.
|
|
*/
|
|
@property(nonatomic, copy) NSString *eventId;
|
|
|
|
/**
|
|
* Event properties.
|
|
*/
|
|
@property(nonatomic) MSEventProperties *typedProperties;
|
|
|
|
@end
|