Class TaskArgument
The TaskArgument.
Assembly: Taskurai.dll
Declaration
public class TaskArgument
Properties
Name
Name of the argument.
Declaration
public string Name { get; set; }
Type
Type of argument.
Declaration
public string Type { get; set; }
StateReference
Value of the argument.
Declaration
public string StateReference { get; set; }
SecretReference
Value of the argument.
Declaration
public string SecretReference { 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; }