createAppointmentWithHttpInfo method

Future<Response> createAppointmentWithHttpInfo(
  1. NewAppointmentModel newAppointment, {
  2. required Object authorization,
})

Performs an HTTP 'POST /api/v1/Appointments' operation and returns the Response. Parameters:

Implementation

Future<Response> createAppointmentWithHttpInfo(
  NewAppointmentModel newAppointment, {
  required Object authorization,
}) {
  // ignore: prefer_const_declarations
  final path = r'/api/v1/Appointments';

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

  headerParams[r'authorization'] = parameterToString(authorization);

  const authNames = <String>[];
  const contentTypes = <String>[
    'application/json',
    'text/json',
    'application/_*+json'
  ];

  return apiClient.invokeAPI(
    path,
    'POST',
    queryParams,
    newAppointment,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes[0],
    authNames,
  );
}