rawListOfMergesAfterWithHttpInfo method

Future<Response> rawListOfMergesAfterWithHttpInfo(
  1. int date
)

List patients that have been merged towards another patient

Returns a list of patients that have been merged after the provided date

Note: This method returns the HTTP Response.

Parameters:

  • int date (required):

Implementation

Future<Response> rawListOfMergesAfterWithHttpInfo(int date,) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/patient/merges/{date}'.replaceAll('{date}', date.toString());

  // ignore: prefer_final_locals
  Object? postBody;

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

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


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