diff options
Diffstat (limited to 'SmartDeviceLink/SDLHMICapabilities.h')
-rw-r--r-- | SmartDeviceLink/SDLHMICapabilities.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLHMICapabilities.h b/SmartDeviceLink/SDLHMICapabilities.h new file mode 100644 index 000000000..6a84cec2c --- /dev/null +++ b/SmartDeviceLink/SDLHMICapabilities.h @@ -0,0 +1,26 @@ +// +// SDLHMICapabilities.h +// SmartDeviceLink-iOS + +#import "SDLRPCStruct.h" + +@interface SDLHMICapabilities : SDLRPCStruct + +- (instancetype)init; +- (instancetype)initWithDictionary:(NSMutableDictionary *)dict; + +/** + Availability of build in Nav. True: Available, False: Not Available + + Boolean value. Optional. + */ +@property (copy, nonatomic) NSNumber *navigation; + +/** + Availability of build in phone. True: Available, False: Not Available + + Boolean value. Optional. + */ +@property (copy, nonatomic) NSNumber *phoneCall; + +@end |