Search Results for

    Show / Hide Table of Contents

    Class BusinessProcessNotificationUpdate

    Notification update for a business process.

    Inheritance
    object
    BusinessProcessNotificationUpdate
    BusinessProcessNotificationUpdateRequest
    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 BusinessProcessNotificationUpdate

    Properties

    EventType

    The event type of the notification.

    Declaration
    [JsonProperty("eventType", Required = Required.Always)]
    [Required(AllowEmptyStrings = true)]
    [JsonConverter(typeof(StringEnumConverter))]
    public NotificationEventType EventType { get; set; }
    Property Value
    NotificationEventType

    Message

    The message shown to the user.

    Declaration
    [JsonProperty("message", Required = Required.Always)]
    [Required]
    public TranslatedStringDictionary Message { get; set; }
    Property Value
    TranslatedStringDictionary

    NavigationLink

    An optional navigation link that allows the user to jump to a page giving more information
    about the process.

    Declaration
    [JsonProperty("navigationLink", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string NavigationLink { get; set; }
    Property Value
    string

    Title

    The title the message that is shown to the user should have.

    Declaration
    [JsonProperty("title", Required = Required.Always)]
    [Required]
    public TranslatedStringDictionary Title { get; set; }
    Property Value
    TranslatedStringDictionary

    Methods

    FromJson(string)

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

    Returns
    BusinessProcessNotificationUpdate

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX