PipelineDataCommandResponse
Namespace: Meshmakers.Octo.Communication.Contracts.MessageObjects
Response returned by FromPipelineDataEventNode after the target pipeline completes.
public record PipelineDataCommandResponse : IEquatable<PipelineDataCommandResponse>
Inheritance Object → PipelineDataCommandResponse
Implements IEquatable<PipelineDataCommandResponse>
Properties
Success
Whether the target pipeline executed successfully.
public bool Success { get; set; }
Property Value
Result
The serialized result from the target pipeline's data context (JSON).
public string Result { get; set; }
Property Value
ErrorMessage
Error message if the target pipeline failed.
public string ErrorMessage { get; set; }
Property Value
Constructors
PipelineDataCommandResponse()
public PipelineDataCommandResponse()