usersMeUpdateWithHttpInfo method
Get or update current user details.
Note: This method returns the HTTP Response
.
Parameters:
- User user:
Implementation
Future<Response> usersMeUpdateWithHttpInfo({
User? user,
}) async {
// ignore: prefer_const_declarations
final path = r'/api/users/me/';
// ignore: prefer_final_locals
Object? postBody = user;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'PUT',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}