ordersModelsUpdateWithHttpInfo method
Future<Response>
ordersModelsUpdateWithHttpInfo(
- int orderId,
- int id,
- OrderModelUpdate orderModelUpdate
Change model.
Note: This method returns the HTTP Response
.
Parameters:
-
int orderId (required):
-
int id (required): A unique integer value identifying this Model.
-
OrderModelUpdate orderModelUpdate (required):
Implementation
Future<Response> ordersModelsUpdateWithHttpInfo(
int orderId,
int id,
OrderModelUpdate orderModelUpdate,
) async {
// ignore: prefer_const_declarations
final path = r'/api/orders/{order_id}/models/{id}/'
.replaceAll('{order_id}', orderId.toString())
.replaceAll('{id}', id.toString());
// ignore: prefer_final_locals
Object? postBody = orderModelUpdate;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'PUT',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}