<PackageReference Include="Relativity.Identity.SDK" Version="2.3.4" />

ClientRequest

Represents a DTO used as a request for creating or updating a client.
public string Keywords { get; set; }

Gets or sets any keywords associated with the client.

public string Name { get; set; }

Gets or sets the client's name.

public string Notes { get; set; }

Gets or sets an optional description or other information about the client.

public string Number { get; set; }

Gets or sets the client's number.

public ObjectIdentifier Status { get; set; }

Gets or sets the client's status.

public ClientRequest()

Initializes an instance of the ClientRequest class with all properties set to their default values.

public ClientRequest(ClientResponse clientResponse)

Initializes an instance of the ClientRequest class with a response object, which is useful for chaining commands.

public static ClientRequest op_Implicit(ClientResponse clientResponse)

Allows a ClientResponse to be implicitly converted to a ClientRequest.