summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLHeadLampStatus.h
blob: f695fdb2d5a22db88eb88cca2275cbaa9d0879da (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
28
29
30
//  SDLHeadLampStatus.h
//

#import "SDLRPCMessage.h"

#import "SDLAmbientLightStatus.h"


/**
 * Status of the head lamps
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLHeadLampStatus : SDLRPCStruct

/**
 * @abstract A boolean value. Status of the low beam lamps.
 */
@property (strong, nonatomic) NSNumber<SDLBool> *lowBeamsOn;
/**
 * @abstract A boolean value. Status of the high beam lamps.
 */
@property (strong, nonatomic) NSNumber<SDLBool> *highBeamsOn;

@property (nullable, strong, nonatomic) SDLAmbientLightStatus ambientLightSensorStatus;

@end

NS_ASSUME_NONNULL_END