mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-11-25 17:43:18 +00:00
14 lines
425 B
Objective-C
14 lines
425 B
Objective-C
#import "BITTelemetryObject.h"
|
|
|
|
///Data contract class for type BITTelemetryData.
|
|
@interface BITTelemetryData : BITTelemetryObject <NSCoding>
|
|
|
|
@property (nonatomic, readonly, copy) NSString *envelopeTypeName;
|
|
@property (nonatomic, readonly, copy) NSString *dataTypeName;
|
|
|
|
@property (nonatomic, copy) NSNumber *version;
|
|
@property (nonatomic, copy) NSString *name;
|
|
@property (nonatomic, strong) NSDictionary *properties;
|
|
|
|
@end
|