Search Results for

    Show / Hide Table of Contents

    Class BusinessProcessCreateRequest

    Create request to create a BusinessProcess.

    Inheritance
    object
    BusinessProcessCreateRequest
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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

    InitialState

    Initial state of the business process.

    Declaration
    [JsonProperty("initialState", Required = Required.Always)]
    [Required]
    public string InitialState { get; set; }
    Property Value
    string

    Notification

    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
    BusinessProcessNotificationUpdate

    SupportsCancellation

    Indicates if the system starting the business process supports cancellation.

    Declaration
    [JsonProperty("supportsCancellation", Required = Required.Always)]
    public bool SupportsCancellation { get; set; }
    Property Value
    bool

    Methods

    FromJson(string)

    Declaration
    public static BusinessProcessCreateRequest FromJson(string data)
    Parameters
    string data

    Returns
    BusinessProcessCreateRequest

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX