summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLKeyboardProperties.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLKeyboardProperties.h')
-rw-r--r--SmartDeviceLink/SDLKeyboardProperties.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLKeyboardProperties.h b/SmartDeviceLink/SDLKeyboardProperties.h
new file mode 100644
index 000000000..8215a8938
--- /dev/null
+++ b/SmartDeviceLink/SDLKeyboardProperties.h
@@ -0,0 +1,23 @@
+// SDLKeyboardProperties.h
+//
+
+#import "SDLRPCMessage.h"
+
+@class SDLLanguage;
+@class SDLKeyboardLayout;
+@class SDLKeypressMode;
+
+
+@interface SDLKeyboardProperties : SDLRPCStruct {
+}
+
+- (instancetype)init;
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@property (strong) SDLLanguage *language;
+@property (strong) SDLKeyboardLayout *keyboardLayout;
+@property (strong) SDLKeypressMode *keypressMode;
+@property (strong) NSMutableArray *limitedCharacterList;
+@property (strong) NSString *autoCompleteText;
+
+@end