Show / Hide Table of Contents

Class TaskNotificationPreferences

Preferences to send notifications on the task activities.

Inheritance
object
TaskNotificationPreferences
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class TaskNotificationPreferences

Properties

ShouldNotifyOnPause

Declaration
[JsonProperty(PropertyName = "shouldNotifyOnPause")]
public bool? ShouldNotifyOnPause { get; set; }
Property Value
Type Description
bool?

Enables notification on pause.

ShouldNotifyOnTaskFailure

Declaration
[JsonProperty(PropertyName = "shouldNotifyOnTaskFailure")]
public bool? ShouldNotifyOnTaskFailure { get; set; }
Property Value
Type Description
bool?

Enables or disables notification on Task Failures.

ShouldNotifyOnTaskSuccess

Declaration
[JsonProperty(PropertyName = "shouldNotifyOnTaskSuccess")]
public bool? ShouldNotifyOnTaskSuccess { get; set; }
Property Value
Type Description
bool?

Enables or disables notification on Task Success.

In this article
Back to top