Class BusinessProcessState
State transition information of a business process
Inheritance
BusinessProcessState
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class BusinessProcessState
Properties
Eventual error associated to the state transition.
Declaration
[JsonProperty("error", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ErrorResponse Error { get; set; }
Property Value
State of the business process
Declaration
[JsonProperty("state", Required = Required.Always)]
[Required]
public string State { get; set; }
Property Value
Date and time of when the state transition was performed.
Declaration
[JsonProperty("timestamp", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public DateTime Timestamp { get; set; }
Property Value
Methods
Declaration
public static BusinessProcessState FromJson(string data)
Parameters
Returns