Class ResultOutput
The ResultOutput.
Assembly: Taskurai.dll
Declaration
public class ResultOutput
Properties
Name
Name of the output.
Declaration
public string Name { get; set; }
Type
Type of output.
Declaration
public string Type { get; set; }
StateReference
State reference.
Declaration
public StateReference StateReference { get; set; }
Sensitive
Indicates sensitive information.
Declaration
public bool? Sensitive { get; set; }
Data
Declaration
[JsonConverter(typeof(BinaryDataConverter))]
protected BinaryData Data { get; set; }
Value
Value JSON payload.
Declaration
[JsonConverter(typeof(ValueDataConverter<object>))]
public ValueData<object> Value { get; set; }
HasValue
Gets a value indicating whether the output has a non-null value.
Declaration
public bool HasValue { get; }
HasState
Gets a value indicating whether the output has a state reference.
Declaration
public bool HasState { get; }