SonarrSeriesSeasonStatistics class

Model for a series' season statistics from Sonarr.

Annotations
  • @JsonSerializable(explicitToJson: true)

Constructors

SonarrSeriesSeasonStatistics({DateTime? previousAiring, DateTime? nextAiring, int? episodeFileCount, int? episodeCount, int? totalEpisodeCount, int? sizeOnDisk, double? percentOfEpisodes})
SonarrSeriesSeasonStatistics.fromJson(Map<String, dynamic> json)
Deserialize a JSON map to a SonarrSeriesSeasonStatistics object.
factory

Properties

episodeCount int?
Amount of episodes available
getter/setter pair
episodeFileCount int?
Amount of episode files available
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
nextAiring DateTime?
Date of the next/upcoming episode
getter/setter pair
percentOfEpisodes double?
Percentage of episodes available
getter/setter pair
previousAiring DateTime?
Date of the last aired episode
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sizeOnDisk int?
Size of this season, in bytes
getter/setter pair
totalEpisodeCount int?
Total amount of episodes in this season, including episodes not aired
getter/setter pair

Methods

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