1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 09:32:48 -05:00

Sent initiation path for organization and user signups (#3723)

This commit is contained in:
Alex Morask
2024-02-26 11:50:24 -05:00
committed by GitHub
parent 56543722ad
commit 40a2a567e6
5 changed files with 36 additions and 1 deletions

View File

@ -234,4 +234,13 @@ public class ReferenceEvent
/// <see langword="null"/> when the event was not originated by an application.
/// </value>
public Version? ClientVersion { get; set; }
/// <summary>
/// The initiation path of a user who signed up for a paid version of Bitwarden. For example, "Trial from marketing website".
/// </summary>
/// <value>
/// This value should only be populated when the <see cref="ReferenceEventType"/> is <see cref="ReferenceEventType.Signup"/>. Otherwise,
/// the value should be <see langword="null" />.
/// </value>
public string SignupInitiationPath { get; set; }
}