From 8fb1e201365db465a0f15677563c564919c5fcee Mon Sep 17 00:00:00 2001 From: Jared McCannon Date: Mon, 1 Dec 2025 14:41:28 -0600 Subject: [PATCH] Updated XML --- ...maticUserConfirmationPolicyEnforcementRequest.cs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/Core/AdminConsole/OrganizationFeatures/Policies/Enforcement/AutoConfirm/AutomaticUserConfirmationPolicyEnforcementRequest.cs b/src/Core/AdminConsole/OrganizationFeatures/Policies/Enforcement/AutoConfirm/AutomaticUserConfirmationPolicyEnforcementRequest.cs index 592b3e4633..c206a79307 100644 --- a/src/Core/AdminConsole/OrganizationFeatures/Policies/Enforcement/AutoConfirm/AutomaticUserConfirmationPolicyEnforcementRequest.cs +++ b/src/Core/AdminConsole/OrganizationFeatures/Policies/Enforcement/AutoConfirm/AutomaticUserConfirmationPolicyEnforcementRequest.cs @@ -7,8 +7,18 @@ namespace Bit.Core.AdminConsole.OrganizationFeatures.Policies.Enforcement.AutoCo /// public record AutomaticUserConfirmationPolicyEnforcementRequest { + /// + /// Organization user to be confirmed to be confirmed + /// public OrganizationUser OrganizationUser { get; } + /// + /// Collection of organization users that match the provided user. This must be populated with organizations users associated with the + /// organization user to confirm. + /// public IEnumerable OtherOrganizationsOrganizationUsers { get; } + /// + /// User associated with the organization user to be confirmed + /// public User User { get; } /// @@ -17,10 +27,9 @@ public record AutomaticUserConfirmationPolicyEnforcementRequest /// /// This record is used to encapsulate the data required for handling the automatic confirmation policy enforcement. /// - /// Use if you've retrieved the organization user records for other organizations already. /// /// The organization user to be validated within the current organization context. - /// A collection of organization user records that match the provided user. + /// THIS MUST BE POPULATED CORRECTLY. A collection of organization user records that match the provided user. /// The general user associated with the operation. public AutomaticUserConfirmationPolicyEnforcementRequest( OrganizationUser organizationUserToValidate,