Skip to content

ChangeRouteVehicleProfileRequest

istgin edited this page Oct 17, 2016 · 3 revisions

Changes route vehicle profile.

Property Type Description Required
ClientId int Current connection client ID Yes
Route Route route object Yes
NewProfile VehicleProfile Vechile profile object Yes
ChangeRouteVehicleProfileRequest request = new ChangeRouteVehicleProfileRequest
{
    ClientId = _connect.AuthorizeHciResponse.ClientId,
    Route = route,
    NewProfile = new VehicleProfile { Id = vehicleProfile.Id }
};

ChangeRouteVehicleProfileResponse

var response = Executor.Submit<ChangeRouteVehicleProfileResponse>(request);
Clone this wiki locally