modifyTmpHealthElementsWithHttpInfo method

Future<Response> modifyTmpHealthElementsWithHttpInfo(
  1. List<HealthElementDto> healthElementDto
)

Modify a batch of healthcare elements

Returns the modified healthcare elements.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> modifyTmpHealthElementsWithHttpInfo(List<HealthElementDto> healthElementDto,) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/tmp/healthElement/batch';

  // ignore: prefer_final_locals
  Object? postBody = healthElementDto;

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

  const authNames = <String>[r'basicSchema'];
  const contentTypes = <String>['application/json'];

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