Skip to main content

PipelineDataCommandResponse

Namespace: Meshmakers.Octo.Communication.Contracts.MessageObjects

Response returned by FromPipelineDataEventNode after the target pipeline completes.

public record PipelineDataCommandResponse : IEquatable<PipelineDataCommandResponse>

Inheritance ObjectPipelineDataCommandResponse
Implements IEquatable<PipelineDataCommandResponse>

Properties

Success

Whether the target pipeline executed successfully.

public bool Success { get; set; }

Property Value

Boolean

Result

The serialized result from the target pipeline's data context (JSON).

public string Result { get; set; }

Property Value

String

ErrorMessage

Error message if the target pipeline failed.

public string ErrorMessage { get; set; }

Property Value

String

Constructors

PipelineDataCommandResponse()

public PipelineDataCommandResponse()