RunReplayResponse
Namespace AgentPrism · Assembly
AgentPrism.AspNetCore.dllResult of a replay.
public sealed record RunReplayResponse : IEquatable<RunReplayResponse>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
Section titled “Constructors”RunReplayResponse()
Section titled “ RunReplayResponse()”public RunReplayResponse()Properties
Section titled “Properties”AgentVersion
Section titled “ AgentVersion”Definition version used. null for a code agent.
public int? AgentVersion { get; init; }Property Value
Section titled “Property Value”int?
CompareLocation
Section titled “ CompareLocation”Address of the endpoint that places the two runs side by side.
public required string CompareLocation { get; init; }Property Value
Section titled “Property Value”ModelId
Section titled “ ModelId”Model used.
public string? ModelId { get; init; }Property Value
Section titled “Property Value”Output
Section titled “ Output”Text produced by the model.
public string? Output { get; init; }Property Value
Section titled “Property Value”Identifier of the newly started run.
public required Guid RunId { get; init; }Property Value
Section titled “Property Value”SourceRunId
Section titled “ SourceRunId”Identifier of the source run. Same as runs.replay_of_run_id.
public required Guid SourceRunId { get; init; }Property Value
Section titled “Property Value”ToolMode
Section titled “ ToolMode”Tool mode applied.
public required ReplayToolMode ToolMode { get; init; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(RunReplayResponse?)
Section titled “ Equals(RunReplayResponse?)”public bool Equals(RunReplayResponse? other)Parameters
Section titled “Parameters”other RunReplayResponse?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(RunReplayResponse?, RunReplayResponse?)
Section titled “ operator ==(RunReplayResponse?, RunReplayResponse?)”public static bool operator ==(RunReplayResponse? left, RunReplayResponse? right)Parameters
Section titled “Parameters”left RunReplayResponse?
right RunReplayResponse?
Returns
Section titled “Returns”operator !=(RunReplayResponse?, RunReplayResponse?)
Section titled “ operator !=(RunReplayResponse?, RunReplayResponse?)”public static bool operator !=(RunReplayResponse? left, RunReplayResponse? right)Parameters
Section titled “Parameters”left RunReplayResponse?
right RunReplayResponse?