Package com.smartcar.sdk.data
Class VehicleLockStatus
- java.lang.Object
-
- com.smartcar.sdk.data.ApiData
-
- com.smartcar.sdk.data.VehicleLockStatus
-
- All Implemented Interfaces:
java.io.Serializable
public class VehicleLockStatus extends ApiData
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VehicleLockStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VehicleChargingPort[]getChargingPort()Returns the vehicle's charging portsVehicleDoor[]getDoors()Returns the vehicle doorsVehicleStorage[]getStorage()Returns the vehicle's storageVehicleSunroof[]getSunroof()Returns the vehicle's sunroofsVehicleWindow[]getWindows()Returns the vehicle's windowsbooleanisLocked()Check if the vehicle currently locked.java.lang.StringtoString()Returns a stringified representation of the VehicleLockStatus object.
-
-
-
Method Detail
-
isLocked
public boolean isLocked()
Check if the vehicle currently locked.- Returns:
- {boolean} True if the vehicle is locked, otherwise false.
-
getDoors
public VehicleDoor[] getDoors()
Returns the vehicle doors- Returns:
- vehicle doors
-
getWindows
public VehicleWindow[] getWindows()
Returns the vehicle's windows- Returns:
- vehicle windows
-
getStorage
public VehicleStorage[] getStorage()
Returns the vehicle's storage- Returns:
- vehicle storage
-
getSunroof
public VehicleSunroof[] getSunroof()
Returns the vehicle's sunroofs- Returns:
- vehicle sunroof
-
getChargingPort
public VehicleChargingPort[] getChargingPort()
Returns the vehicle's charging ports- Returns:
- vehicle charging port
-
-