summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLHeadLampStatus.h
blob: 4664259f1839cd7646c61612171433ea571c58f8 (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
//  SDLHeadLampStatus.h
//

#import "SDLRPCMessage.h"

#import "SDLAmbientLightStatus.h"


/**
 * Status of the head lamps
 */
@interface SDLHeadLampStatus : SDLRPCStruct

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

@property (strong) SDLAmbientLightStatus ambientLightSensorStatus;

@end