Search Results for

    Show / Hide Table of Contents

    Class BusinessProcessState

    State transition information of a business process

    Inheritance
    object
    BusinessProcessState
    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 BusinessProcessState

    Properties

    Error

    Eventual error associated to the state transition.

    Declaration
    [JsonProperty("error", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ErrorResponse Error { get; set; }
    Property Value
    ErrorResponse

    State

    State of the business process

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

    Timestamp

    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
    DateTime

    Methods

    FromJson(string)

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

    Returns
    BusinessProcessState

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX