generateSumehrWithHttpInfo method
Future<Response>
generateSumehrWithHttpInfo(
- String patientId,
- String language,
- SumehrExportInfoDto sumehrExportInfoDto
Generate sumehr
Note: This method returns the HTTP Response
.
Parameters:
-
String patientId (required):
-
String language (required):
-
SumehrExportInfoDto sumehrExportInfoDto (required):
Implementation
Future<Response> generateSumehrWithHttpInfo(String patientId, String language, SumehrExportInfoDto sumehrExportInfoDto,) async {
// ignore: prefer_const_declarations
final path = r'/rest/v1/be_kmehr/sumehr/{patientId}/export'.replaceAll('{patientId}', patientId);
// ignore: prefer_final_locals
Object? postBody = sumehrExportInfoDto;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
queryParams.addAll(_queryParams('', 'language', language));
const authNames = <String>[r'basicSchema'];
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
authNames,
);
}