Show / Hide Table of Contents

Class NotificationSummary

Notifications

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

Properties

Id

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

Notification identifier.

Remarks

Required

NotificationText

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

Notification text

Remarks

Required

NotificationType

Declaration
[Required(ErrorMessage = "NotificationType is required.")]
[JsonProperty(PropertyName = "notificationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NotificationSummary.NotificationTypeEnum? NotificationType { get; set; }
Property Value
Type Description
NotificationSummary.NotificationTypeEnum?

Notification type

Remarks

Required

TimePublished

Declaration
[Required(ErrorMessage = "TimePublished is required.")]
[JsonProperty(PropertyName = "timePublished")]
public DateTime? TimePublished { get; set; }
Property Value
Type Description
DateTime?

Published date

Remarks

Required

In this article
Back to top