mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-10 16:29:55 +00:00
24 lines
803 B
Objective-C
24 lines
803 B
Objective-C
#import "BITTelemetryObject.h"
|
|
@class BITBase;
|
|
|
|
@interface BITEnvelope : BITTelemetryObject <NSCoding>
|
|
|
|
@property (nonatomic, copy) NSNumber *version;
|
|
@property (nonatomic, copy) NSString *name;
|
|
@property (nonatomic, copy) NSString *time;
|
|
@property (nonatomic, copy) NSNumber *sampleRate;
|
|
@property (nonatomic, copy) NSString *seq;
|
|
@property (nonatomic, copy) NSString *iKey;
|
|
@property (nonatomic, copy) NSNumber *flags;
|
|
@property (nonatomic, copy) NSString *deviceId;
|
|
@property (nonatomic, copy) NSString *os;
|
|
@property (nonatomic, copy) NSString *osVer;
|
|
@property (nonatomic, copy) NSString *appId;
|
|
@property (nonatomic, copy) NSString *appVer;
|
|
@property (nonatomic, copy) NSString *userId;
|
|
@property (nonatomic, strong) BITOrderedDictionary *tags;
|
|
@property (nonatomic, strong) BITBase *data;
|
|
|
|
|
|
@end
|