RunInputResponse
Namespace AgentPrism · Assembly
AgentPrism.AspNetCore.dllHTTP response for a run’s recorded input.
public sealed record RunInputResponse : IEquatable<RunInputResponse>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”RunInputResponse()
Section titled “ RunInputResponse()”public RunInputResponse()Properties
Section titled “Properties”CreatedAt
Section titled “ CreatedAt”Creation time of the record (UTC).
public required DateTimeOffset CreatedAt { get; init; }Property Value
Section titled “Property Value”Messages
Section titled “ Messages”Input messages, with their polymorphic content, exactly as recorded.
public required IReadOnlyList<ChatMessage> Messages { get; init; }Property Value
Section titled “Property Value”IReadOnlyList<ChatMessage>
Run identifier.
public required Guid RunId { 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(RunInputResponse?)
Section titled “ Equals(RunInputResponse?)”public bool Equals(RunInputResponse? other)Parameters
Section titled “Parameters”other RunInputResponse?
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 ==(RunInputResponse?, RunInputResponse?)
Section titled “ operator ==(RunInputResponse?, RunInputResponse?)”public static bool operator ==(RunInputResponse? left, RunInputResponse? right)Parameters
Section titled “Parameters”left RunInputResponse?
right RunInputResponse?
Returns
Section titled “Returns”operator !=(RunInputResponse?, RunInputResponse?)
Section titled “ operator !=(RunInputResponse?, RunInputResponse?)”public static bool operator !=(RunInputResponse? left, RunInputResponse? right)Parameters
Section titled “Parameters”left RunInputResponse?
right RunInputResponse?