listAppointmentTypesForUser method

Future<List<CalendarItemTypeDto>?> listAppointmentTypesForUser(
  1. String groupId,
  2. String userId,
  3. int startDate,
  4. int endDate,
)

List Calendar Item types for a provided group id and user id

Returns a list of Calendar Item types. In order to be returned, the Calendar Item Type must be linked to a time table enclosed in an Agenda for which an anonymous right has been set (a Right with read permission and null user)

Parameters:

  • String groupId (required): Healthcare parties group id

  • String userId (required): Healthcare party user id

  • int startDate (required):

  • int endDate (required):

Implementation

Future<List<CalendarItemTypeDto>?> listAppointmentTypesForUser(String groupId, String userId, int startDate, int endDate,) async {
  final response = await listAppointmentTypesForUserWithHttpInfo(groupId, userId, startDate, endDate,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException.withRequestId(response.statusCode, await _decodeBodyBytes(response), response.headers["x-request-id"], response.request?.url.toString());
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
    final responseBody = await _decodeBodyBytes(response);
    return (await apiClient.deserializeAsync(responseBody, 'List<CalendarItemTypeDto>') as List)
      .cast<CalendarItemTypeDto>()
      .toList();

  }
  return null;
}