rawGetTimeTablesByPeriodAndAgendaIdWithHttpInfo method

Future<Response> rawGetTimeTablesByPeriodAndAgendaIdWithHttpInfo(
  1. int startDate,
  2. int endDate,
  3. String agendaId
)

Get TimeTables by Period and AgendaId

Note: This method returns the HTTP Response.

Parameters:

  • int startDate (required):

  • int endDate (required):

  • String agendaId (required):

Implementation

Future<Response> rawGetTimeTablesByPeriodAndAgendaIdWithHttpInfo(int startDate, int endDate, String agendaId,) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/timeTable/byPeriodAndAgendaId';

  // ignore: prefer_final_locals
  Object? postBody;

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

  queryParams.addAll(_queryParams('', 'startDate', startDate));
  queryParams.addAll(_queryParams('', 'endDate', endDate));
  queryParams.addAll(_queryParams('', 'agendaId', agendaId));

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


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