TautulliNewsletter class

Model to store information about a Tautulli newsletter.

Annotations
  • @JsonSerializable(explicitToJson: true)

Constructors

TautulliNewsletter({int? id, int? agentId, String? agentName, String? agentLabel, String? friendlyName, String? cron, bool? active})
TautulliNewsletter.fromJson(Map<String, dynamic> json)
Deserialize a JSON map to a TautulliNewsletter object.
factory

Properties

active bool?
Is the newsletter active/enabled?
final
agentId int?
newsletter agent ID.
final
agentLabel String?
Label of the newsletter agent.
final
agentName String?
Name of the newsletter agent.
final
cron String?
The Crontab schedule.
final
friendlyName String?
Friendly name (description) of the newsletter.
final
hashCode int
The hash code for this object.
no setterinherited
id int?
newsletter ID.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

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