OODeviceInfo.h
1 
2 @interface OODeviceInfo : NSObject
3 
4 @property NSString *browser;
5 @property NSString *browserVersion;
6 @property NSString *os;
7 @property NSString *osVersion;
8 @property NSString *deviceType;
9 @property NSString *deviceBrand;
10 @property NSString *model;
11 
12 - (instancetype)initWithBrowser:(NSString *)browser
13  browserVersion:(NSString *)browserVersion
14  os:(NSString *)os
15  osVersion:(NSString *)osVersion
16  deviceBrand:(NSString *)deviceBrand
17  model:(NSString *)model;
18 
19 @end
NSString * browserVersion
Definition: OODeviceInfo.h:5
NSString * deviceBrand
Definition: OODeviceInfo.h:9
NSString * model
Definition: OODeviceInfo.h:10
NSString * osVersion
Definition: OODeviceInfo.h:7
NSString * deviceType
Definition: OODeviceInfo.h:8
NSString * os
Definition: OODeviceInfo.h:6
NSString * browser
Definition: OODeviceInfo.h:4
Definition: OODeviceInfo.h:2