WorkflowResumeRequest
Namespace AgentPrism · Assembly
AgentPrism.Abstractions.dllThe information needed to resume a workflow from a checkpoint.
public sealed record WorkflowResumeRequest : IEquatable<WorkflowResumeRequest>Inheritance
Section titled “Inheritance”object ← WorkflowResumeRequest
Implements
Section titled “Implements”IEquatable<WorkflowResumeRequest>
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”WorkflowResumeRequest()
Section titled “ WorkflowResumeRequest()”public WorkflowResumeRequest()Properties
Section titled “Properties”CheckpointId
Section titled “ CheckpointId”The identifier of the checkpoint to resume from. If left empty, that run’s most recent checkpoint is used.
public string? CheckpointId { get; init; }Property Value
Section titled “Property Value”NewRunId
Section titled “ NewRunId”The new run’s identifier. If given, the record is opened with this identifier.
public Guid? NewRunId { get; init; }Property Value
Section titled “Property Value”Guid?
The identifier of the run to resume.
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(WorkflowResumeRequest?)
Section titled “ Equals(WorkflowResumeRequest?)”public bool Equals(WorkflowResumeRequest? other)Parameters
Section titled “Parameters”other WorkflowResumeRequest?
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 ==(WorkflowResumeRequest?, WorkflowResumeRequest?)
Section titled “ operator ==(WorkflowResumeRequest?, WorkflowResumeRequest?)”public static bool operator ==(WorkflowResumeRequest? left, WorkflowResumeRequest? right)Parameters
Section titled “Parameters”left WorkflowResumeRequest?
right WorkflowResumeRequest?
Returns
Section titled “Returns”operator !=(WorkflowResumeRequest?, WorkflowResumeRequest?)
Section titled “ operator !=(WorkflowResumeRequest?, WorkflowResumeRequest?)”public static bool operator !=(WorkflowResumeRequest? left, WorkflowResumeRequest? right)Parameters
Section titled “Parameters”left WorkflowResumeRequest?
right WorkflowResumeRequest?