Class BusinessProcessNotificationUpdate
Notification update for a business process.
Inheritance
BusinessProcessNotificationUpdate
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
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
The message shown to the user.
Declaration
[JsonProperty("message", Required = Required.Always)]
[Required]
public TranslatedStringDictionary Message { get; set; }
Property Value
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
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
Methods
Declaration
public static BusinessProcessNotificationUpdate FromJson(string data)
Parameters
Returns