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,