blob: f6dc234ac5f97fe9d6c6fe36d5ca7be5846be3fb (
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
|
// SDLSliderResponse.h
//
#import "SDLRPCResponse.h"
/**
* Slider Response is sent, when Slider has been called
*
* Since SmartDeviceLink 2.0
*/
NS_ASSUME_NONNULL_BEGIN
@interface SDLSliderResponse : SDLRPCResponse
/**
* @abstract The selected position of the slider.
*/
@property (nullable, strong) NSNumber<SDLInt> *sliderPosition;
@end
NS_ASSUME_NONNULL_END
|