Vehicle data struct for status of head lamps
Low beams are on or off.
Required, boolean
@property (nonatomic, strong) NSNumber<SDLBool> *_Nonnull lowBeamsOn;
var lowBeamsOn: NSNumber & SDLBool { get set }
High beams are on or off
Required, boolean
@property (nonatomic, strong) NSNumber<SDLBool> *_Nonnull highBeamsOn;
var highBeamsOn: NSNumber & SDLBool { get set }
Status of the ambient light senser
Optional
@property (nonatomic, strong, nullable) SDLAmbientLightStatus ambientLightSensorStatus;
var ambientLightSensorStatus: SDLAmbientLightStatus? { get set }