<PackageReference Include="Relativity.Server.Infrastructure.SDK" Version="5000.0.1" />

AgentRequest

public class AgentRequest
Represents a DTO used as a request for creating or updating an agent.
public Securable<ObjectIdentifier> AgentServer { get; set; }

Gets or sets the identifier for the server hosting the agent.

public Securable<ObjectIdentifier> AgentType { get; set; }

Gets or sets the identifier for the agent type.

public bool Enabled { get; set; }

Gets or sets a value indicating whether the agent is running.

public decimal Interval { get; set; }

Gets or sets the number of seconds the agent manager will wait between each agent execution.

public string Keywords { get; set; }

Gets or sets keywords associated with the agent.

public int LoggingLevel { get; set; }

Gets or sets a value indicating the message type that the system logs in the Event Viewer.

public string Notes { get; set; }

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

public AgentRequest()

Initializes a new instance of the AgentRequest class with all properties set to null.

public AgentRequest(AgentResponse agentResponse)

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