mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-19 18:56:31 +00:00
18 lines
450 B
Objective-C
18 lines
450 B
Objective-C
#import "BITTelemetryObject.h"
|
|
|
|
#import "HockeySDKNullability.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
///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;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|