<PackageReference Include="Relativity.Server.EventHandler.SDK" Version="17.4.2" />

User

public class User
Creates a user instances.
public int ArtifactID { get; }

Gets the global artifact ID of the user.

public int CaseUserArtifactID { get; }

Gets the case specific artifact ID of the user.

public string EmailAddress { get; }

Gets the email Address of the User.

public string FirstName { get; }

Gets the first name of the user.

public string FullName { get; }

Gets the full name of the user, as that is "LastName, FirstName".

public string LastName { get; }

Gets the last name of the user.

public User(int artifactID, string firstName, string lastName, string emailAddress)

Initializes a new instance of the User class.

public User(int artifactID, string firstName, string lastName, string emailAddress, int caseUserArtifactID)

Initializes a new instance of the User class.