TautulliNotificationLogRecord class

Model to store an individual notification log details from Tautulli.

Annotations
  • @JsonSerializable(explicitToJson: true)

Constructors

TautulliNotificationLogRecord({int? id, DateTime? timestamp, int? sessionKey, int? ratingKey, int? userId, String? user, int? notifierId, int? agentId, String? agentName, String? notifyAction, String? subjectText, String? bodyText, bool? success})
TautulliNotificationLogRecord.fromJson(Map<String, dynamic> json)
Deserialize a JSON map to a TautulliNotificationLogRecord object.
factory

Properties

agentId int?
Agent ID for the notifier.
final
agentName String?
Agent name for the notifier.
final
bodyText String?
Body text of the notification.
final
hashCode int
The hash code for this object.
no setterinherited
id int?
ID of the notification.
final
notifierId int?
Notifier ID for the notifier that triggered the notification.
final
notifyAction String?
Notification action that triggered the notification.
final
ratingKey int?
Content rating key (if applicable).
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sessionKey int?
Session key (if applicable).
final
subjectText String?
Subject text of the notification.
final
success bool?
Was the notification successfully sent?
final
timestamp DateTime?
Timestamp for when the notification was sent.
final
user String?
User's username (if applicable).
final
userId int?
User's ID (if applicable).
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serialize a TautulliNotificationLogRecord object to a JSON map.
toString() String
Returns a JSON-encoded string version of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited