12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #import <Foundation/Foundation.h>
- #import "RTCMacros.h"
- @class RTC_OBJC_TYPE(RTCStatistics);
- NS_ASSUME_NONNULL_BEGIN
- RTC_OBJC_EXPORT
- @interface RTC_OBJC_TYPE (RTCStatisticsReport) : NSObject
- @property(nonatomic, readonly) CFTimeInterval timestamp_us;
- @property(nonatomic, readonly) NSDictionary<NSString *, RTC_OBJC_TYPE(RTCStatistics) *> *statistics;
- - (instancetype)init NS_UNAVAILABLE;
- @end
- RTC_OBJC_EXPORT
- @interface RTC_OBJC_TYPE (RTCStatistics) : NSObject
- @property(nonatomic, readonly) NSString *id;
- @property(nonatomic, readonly) CFTimeInterval timestamp_us;
- @property(nonatomic, readonly) NSString *type;
- @property(nonatomic, readonly) NSDictionary<NSString *, NSObject *> *values;
- - (instancetype)init NS_UNAVAILABLE;
- @end
- NS_ASSUME_NONNULL_END
|