ordersModelsDestroyWithHttpInfo method

Future<Response> ordersModelsDestroyWithHttpInfo(
  1. int orderId,
  2. int id
)

Delete model.

Note: This method returns the HTTP Response.

Parameters:

  • int orderId (required):

  • int id (required): A unique integer value identifying this Model.

Implementation

Future<Response> ordersModelsDestroyWithHttpInfo(
  int orderId,
  int id,
) 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;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];

  return apiClient.invokeAPI(
    path,
    'DELETE',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}