providedWithHttpInfo method
Performs an HTTP 'POST /api/v1/Appointments/{id}/Provided' operation and returns the Response
.
Parameters:
Implementation
Future<Response> providedWithHttpInfo(
int id, {
required Object authorization,
}) async {
// ignore: prefer_const_declarations
final path =
r'/api/v1/Appointments/{id}/Provided'.replaceAll('{id}', id.toString());
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,
null,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes[0],
authNames,
);
}