AI-generated Key Takeaways
-
BaseVehicleis an abstract class representing fundamental vehicle information within the Driver SDK. -
It provides methods to retrieve unique identifiers for the provider, the vehicle within the provider's context, and the vehicle's full name.
-
This class serves as a foundation for more specific vehicle types and functionalities.
-
Developers can utilize the
getProviderId(),getVehicleId(), andgetVehicleName()methods to access key vehicle details.
Base representation of a vehicle.
Public Constructor Summary
Public Method Summary
| abstract String |
getProviderId()
Returns the unique identifier for this provider.
|
| abstract String |
getVehicleId()
Returns the unique identifier for this vehicle for this provider.
|
| abstract String |
getVehicleName()
Returns the full name for this vehicle among all providers.
|
Inherited Method Summary
Public Constructors
public BaseVehicle ()
Public Methods
public abstract String getProviderId ()
Returns the unique identifier for this provider.
public abstract String getVehicleId ()
Returns the unique identifier for this vehicle for this provider.
public abstract String getVehicleName ()
Returns the full name for this vehicle among all providers.