mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 11:51:52 +03:00
66 lines
1.5 KiB
Objective-C
66 lines
1.5 KiB
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class MSDevice;
|
|
|
|
@protocol MSLog <NSObject>
|
|
|
|
/**
|
|
* Log type.
|
|
*/
|
|
@property(nonatomic, copy) NSString *type;
|
|
|
|
/**
|
|
* Log timestamp.
|
|
*/
|
|
@property(nonatomic) NSDate *timestamp;
|
|
|
|
/**
|
|
* A session identifier is used to correlate logs together. A session is an abstract concept in the API and is not necessarily an analytics
|
|
* session, it can be used to only track crashes.
|
|
*/
|
|
@property(nonatomic, copy) NSString *sid;
|
|
|
|
/**
|
|
* Optional distribution group ID value.
|
|
*/
|
|
@property(nonatomic, copy) NSString *distributionGroupId;
|
|
|
|
/**
|
|
* Optional user identifier.
|
|
*/
|
|
@property(nonatomic, copy) NSString *userId;
|
|
|
|
/**
|
|
* Device properties associated to this log.
|
|
*/
|
|
@property(nonatomic) MSDevice *device;
|
|
|
|
/**
|
|
* Transient object tag. For example, a log can be tagged with a transmission target. We do this currently to prevent properties being
|
|
* applied retroactively to previous logs by comparing their tags.
|
|
*/
|
|
@property(nonatomic) NSObject *tag;
|
|
|
|
/**
|
|
* Checks if the object's values are valid.
|
|
*
|
|
* @return YES, if the object is valid.
|
|
*/
|
|
- (BOOL)isValid;
|
|
|
|
/**
|
|
* Adds a transmission target token that this log should be sent to.
|
|
*
|
|
* @param token The transmission target token.
|
|
*/
|
|
- (void)addTransmissionTargetToken:(NSString *)token;
|
|
|
|
/**
|
|
* Gets all transmission target tokens that this log should be sent to.
|
|
*
|
|
* @returns Collection of transmission target tokens that this log should be sent to.
|
|
*/
|
|
- (NSSet *)transmissionTargetTokens;
|
|
|
|
@end
|