TautulliNewsletterLogRecord class

Model to store an individual newsletter log details from Tautulli.

Annotations
  • @JsonSerializable(explicitToJson: true)

Constructors

TautulliNewsletterLogRecord({int? id, DateTime? timestamp, String? endDate, String? startDate, String? uuid, int? newsletterId, int? agentId, String? agentName, String? notifyAction, String? subjectText, String? bodyText, bool? success})
TautulliNewsletterLogRecord.fromJson(Map<String, dynamic> json)
Deserialize a JSON map to a TautulliNewsletterLogRecord object.
factory

Properties

agentId int?
Agent ID for the newsletter.
final
agentName String?
Agent name for the newsletter.
final
bodyText String?
Body text of the newsletter.
final
endDate String?
End date (of content) of the newsletter.
final
hashCode int
The hash code for this object.
no setterinherited
id int?
ID.
final
newsletterId int?
newsletter ID.
final
notifyAction String?
Notification action that triggered the newsletter.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
startDate String?
Start date (of content) of the newsletter.
final
subjectText String?
Subject text of the newsletter.
final
success bool?
Was the newsletter successfully sent?
final
timestamp DateTime?
Timestamp for when the newsletter was sent.
final
uuid String?
UUID of the newsletter.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serialize a TautulliNewsletterLogRecord 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