deleteMissionProfile method
Deletes a mission profile.
May throw DependencyException.
May throw InvalidParameterException.
May throw ResourceNotFoundException.
Parameter missionProfileId :
UUID of a mission profile.
Implementation
Future<MissionProfileIdResponse> deleteMissionProfile({
required String missionProfileId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/missionprofile/${Uri.encodeComponent(missionProfileId)}',
exceptionFnMap: _exceptionFns,
);
return MissionProfileIdResponse.fromJson(response);
}