mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00

git-subtree-dir: submodules/HockeySDK-iOS git-subtree-mainline: 085acd26c4432939403765234266e3c1be0f3dd9 git-subtree-split: c7d0c7026303253e2ac576c02655691e5d314fe2
19 lines
506 B
Objective-C
19 lines
506 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;
|
|
@property (nonatomic, strong) NSDictionary *properties;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|