package com.smartdevicelink.proxy.rpc; import java.util.Hashtable; import com.smartdevicelink.proxy.RPCStruct; import com.smartdevicelink.proxy.rpc.enums.VehicleDataStatus; /** Information related to the MyKey feature. *

Parameter List

* * * * * * * * * * * * * *
Param NameTypeMandatoryDescription
e911OverrideVehicleDataStatustrueIndicates whether e911 override is on.
* *@since SmartDeviceLink 2.0 * *@see GetVehicleData *@see OnVehicleData *@see VehicleDataStatus * * */ public class MyKey extends RPCStruct { public static final String KEY_E_911_OVERRIDE = "e911Override"; /** *

* Constructs a new MyKey object indicated by the Hashtable * parameter *

* * @param hash * The Hashtable to use */ public MyKey() { } public MyKey(Hashtable hash) { super(hash); } public void setE911Override(VehicleDataStatus e911Override) { setValue(KEY_E_911_OVERRIDE, e911Override); } public VehicleDataStatus getE911Override() { return (VehicleDataStatus) getObject(VehicleDataStatus.class, KEY_E_911_OVERRIDE); } }