ordersListWithHttpInfo method

Future<Response> ordersListWithHttpInfo({
  1. String? project,
})

Lists all orders of customer.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> ordersListWithHttpInfo({
  String? project,
}) async {
  // ignore: prefer_const_declarations
  final path = r'/api/orders/';

  // ignore: prefer_final_locals
  Object? postBody;

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

  if (project != null) {
    queryParams.addAll(_queryParams('', 'project', project));
  }

  const contentTypes = <String>[];

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