@@ -499,6 +499,7 @@ def update_user_by_id(
499499 is_exempt_from_device_limits : Optional [bool ] = None ,
500500 is_exempt_from_login_verification : Optional [bool ] = None ,
501501 is_password_reset_required : Optional [bool ] = None ,
502+ is_collaborated_content_available_when_owner_inactive : Optional [bool ] = None ,
502503 status : Optional [UpdateUserByIdStatus ] = None ,
503504 space_amount : Optional [int ] = None ,
504505 notification_email : Union [
@@ -564,6 +565,10 @@ def update_user_by_id(
564565 :type is_exempt_from_login_verification: Optional[bool], optional
565566 :param is_password_reset_required: Whether the user is required to reset their password., defaults to None
566567 :type is_password_reset_required: Optional[bool], optional
568+ :param is_collaborated_content_available_when_owner_inactive: Whether collaborators can access content owned by the user when
569+ the user is inactive. This setting preserves existing
570+ collaborator access and does not grant new permissions., defaults to None
571+ :type is_collaborated_content_available_when_owner_inactive: Optional[bool], optional
567572 :param status: The user's account status., defaults to None
568573 :type status: Optional[UpdateUserByIdStatus], optional
569574 :param space_amount: The user’s total available space in bytes. Set this to `-1` to
@@ -616,6 +621,9 @@ def update_user_by_id(
616621 'is_exempt_from_device_limits' : is_exempt_from_device_limits ,
617622 'is_exempt_from_login_verification' : is_exempt_from_login_verification ,
618623 'is_password_reset_required' : is_password_reset_required ,
624+ 'is_collaborated_content_available_when_owner_inactive' : (
625+ is_collaborated_content_available_when_owner_inactive
626+ ),
619627 'status' : status ,
620628 'space_amount' : space_amount ,
621629 'notification_email' : notification_email ,
0 commit comments