modifyPropertiesWithHttpInfo method

Future<Response> modifyPropertiesWithHttpInfo(
  1. String userId, {
  2. List<PropertyStubDto>? propertyStubDto,
})

Modify a User property

Modify a User properties based on his/her ID. The return value is the modified user.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> modifyPropertiesWithHttpInfo(String userId, { List<PropertyStubDto>? propertyStubDto, }) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/user/{userId}/properties'
      .replaceAll('{userId}', userId);

  // ignore: prefer_final_locals
  Object? postBody = propertyStubDto;

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

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


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