<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="5000.0.2" />

Relativity.Services.Interfaces.Agent.Models.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 Boolean 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 any 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 an instance of the AgentRequest class with all properties set to null.

public AgentRequest(AgentResponse agentResponse)

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