Module Values_2.UserNotificationSummarySource

Summary information about a notification for a specific user, including the user's read status.

Sourcetype nonrec t = {
  1. notificationId : Values_0.NotificationId.t option;
    (*

    The unique identifier for the notification.

    *)
  2. notificationStatus : NotificationStatus.t option;
    (*

    The status of the notification for this user. Valid values are READ, UNREAD, and HIDDEN.

    *)
  3. instanceId : Values_0.InstanceId.t option;
    (*

    The identifier of the Amazon Connect instance.

    *)
  4. recipientId : Values_0.AgentId.t option;
    (*

    The identifier of the recipient user.

    *)
  5. content : Values_0.NotificationContent.t option;
    (*

    The localized content of the notification.

    *)
  6. priority : Values_1.NotificationPriority.t option;
    (*

    The priority level of the notification.

    *)
  7. source : NotificationSource.t option;
    (*

    The source that created the notification. Valid values are CUSTOMER, RULES, and SYSTEM.

    *)
  8. createdAt : Values_0.Timestamp.t option;
    (*

    The timestamp when the notification was created.

    *)
  9. expiresAt : Values_0.Timestamp.t option;
    (*

    The timestamp when the notification expires.

    *)
}
Sourceval make : ?notificationId:??? -> ?notificationStatus:??? -> ?instanceId:??? -> ?recipientId:??? -> ?content:??? -> ?priority:??? -> ?source:??? -> ?createdAt:??? -> ?expiresAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `Enum of string ] * [> `String of string ]) list | `String of Values_0.NotificationId.t | `Timestamp of Values_0.Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t