Show / Hide Table of Contents

Class NotificationSettingsEventSettings

Event settings

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

Properties

Enabled

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

Specify if notifications are enabled for the event
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none

EventId

Declaration
[Required(ErrorMessage = "EventId is required.")]
[JsonProperty(PropertyName = "eventId")]
public string EventId { get; set; }
Property Value
Type Description
string

IDCS-generated event
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

In this article
Back to top