summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLHeadLampStatus.h
blob: cc158612278de62666a07830e9f9c50ce36734cc (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
31
32
33
//  SDLHeadLampStatus.h
//

#import "SDLRPCMessage.h"

@class SDLAmbientLightStatus;


/**
 * Status of the head lamps
 */
@interface SDLHeadLampStatus : SDLRPCStruct {
}
/**
 * @abstract Constructs a new SDLHeadLampStatus object
 */
- (instancetype)init;
/**
 * @abstract Constructs a new SDLHeadLampStatus object indicated by the NSMutableDictionary
 * parameter
 * @param dict The dictionary to use
 */
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
/**
 * @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