summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnKeyboardInput.h
blob: 2090fb8a6af50919b09d25dba9bfc6febf1a8317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//  SDLOnKeyboardInput.h
//

#import "SDLRPCNotification.h"

#import "SDLKeyboardEvent.h"

NS_ASSUME_NONNULL_BEGIN

/**
 Sent when a keyboard presented by a PerformInteraction has a keyboard input.
 */
@interface SDLOnKeyboardInput : SDLRPCNotification

/**
 The type of keyboard input
 */
@property (strong, nonatomic) SDLKeyboardEvent event;

/**
 The current keyboard string input from the user
 */
@property (nullable, strong, nonatomic) NSString *data;

@end

NS_ASSUME_NONNULL_END