2 #import <Foundation/Foundation.h>
4 NS_ASSUME_NONNULL_BEGIN
6 @protocol OTDeviceInformationAdapter
8 /* Returns a string like "iPhone3,5" */
11 /* Returns the user-entered name for this device */
12 - (NSString
* _Nullable
)deviceName
;
14 /* Returns a string describing the current os version */
15 - (NSString
*)osVersion
;
17 /* Returns the serial number as a string. */
18 - (NSString
*)serialNumber
;
22 @interface OTDeviceInformationActualAdapter
: NSObject
<OTDeviceInformationAdapter
>