2019-08-02 14:19:31 +03:00
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// Licensed under the MIT License.
|
|
|
|
|
2018-11-19 12:44:58 +03:00
|
|
|
#import "MSLogWithNameAndProperties.h"
|
|
|
|
|
|
|
|
@class MSEventProperties;
|
2018-12-02 22:31:00 +03:00
|
|
|
@class MSMetadataExtension;
|
2018-11-19 12:44:58 +03:00
|
|
|
|
|
|
|
@interface MSEventLog : MSLogWithNameAndProperties
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unique identifier for this event.
|
|
|
|
*/
|
|
|
|
@property(nonatomic, copy) NSString *eventId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event properties.
|
|
|
|
*/
|
2019-09-01 20:28:10 +03:00
|
|
|
@property(nonatomic, strong) MSEventProperties *typedProperties;
|
2018-11-19 12:44:58 +03:00
|
|
|
|
|
|
|
@end
|