SonarrQueueRecord class

Model for the from Sonarr.

Annotations
  • @JsonSerializable(explicitToJson: true)

Constructors

SonarrQueueRecord({SonarrSeries? series, SonarrEpisode? episode, SonarrEpisodeFileQuality? quality, double? size, String? title, double? sizeLeft, String? timeLeft, DateTime? estimatedCompletionTime, String? status, String? trackedDownloadStatus, List<SonarrQueueStatusMessage>? statusMessages, int? id})
SonarrQueueRecord.fromJson(Map<String, dynamic> json)
Deserialize a JSON map to a SonarrQueueRecord object.
factory

Properties

episode SonarrEpisode?
SonarrEpisode object containing episode information
getter/setter pair
estimatedCompletionTime DateTime?
Estimated time of completion
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
id int?
Queue item identifier
getter/setter pair
protocol String?
Protocol being used (torrent, usenet)
getter/setter pair
quality SonarrEpisodeFileQuality?
SonarrEpisodeFileQuality object containing quality information
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
series SonarrSeries?
SonarrSeries object containing series information
getter/setter pair
size double?
Size of the queued item
getter/setter pair
sizeLeft double?
Size of the download remaining
getter/setter pair
status String?
Status of the queued item (Delay, Completed, etc.)
getter/setter pair
statusMessages List<SonarrQueueStatusMessage>?
getter/setter pair
timeLeft String?
Estimated remaining time left
getter/setter pair
title String?
Title of the queued item
getter/setter pair
trackedDownloadStatus String?
Status of the download
getter/setter pair

Methods

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