Class BusinessProcessCreateRequest
Create request to create a BusinessProcess.
Inheritance
BusinessProcessCreateRequest
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class BusinessProcessCreateRequest
Properties
Initial state of the business process.
Declaration
[JsonProperty("initialState", Required = Required.Always)]
[Required]
public string InitialState { get; set; }
Property Value
Notification data to send to the user when creating the business process.
Set to null to not create a notification.
Declaration
[JsonProperty("notification", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public BusinessProcessNotificationUpdate Notification { get; set; }
Property Value
Indicates if the system starting the business process supports cancellation.
Declaration
[JsonProperty("supportsCancellation", Required = Required.Always)]
public bool SupportsCancellation { get; set; }
Property Value
Methods
Declaration
public static BusinessProcessCreateRequest FromJson(string data)
Parameters
Returns