providedSeriesWithHttpInfo method

Future<Response> providedSeriesWithHttpInfo(
  1. ProvidedSeriesModel model, {
  2. required Object authorization,
})

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

Implementation

Future<Response> providedSeriesWithHttpInfo(
  ProvidedSeriesModel model, {
  required Object authorization,
}) async {
  // ignore: prefer_const_declarations
  final path = r'/api/v1/Appointments/Provided';

  // ignore: prefer_final_locals
  Object postBody = model;

  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,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes[0],
    authNames,
  );
}