ordersModelsSubmitToFinishedPartialUpdateWithHttpInfo method
Model was accepted by customer and can be added to project.
Note: This method returns the HTTP Response
.
Parameters:
Implementation
Future<Response> ordersModelsSubmitToFinishedPartialUpdateWithHttpInfo(
int orderId,
int id,
) async {
// ignore: prefer_const_declarations
final path = r'/api/orders/{order_id}/models/{id}/submit_to_finished/'
.replaceAll('{order_id}', orderId.toString())
.replaceAll('{id}', id.toString());
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'PATCH',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}