SonarrMissing class

Model for missing episode records from Sonarr.

Annotations
  • @JsonSerializable(explicitToJson: true)

Constructors

SonarrMissing({int? page, int? pageSize, SonarrWantedMissingSortKey? sortKey, String? sortDirection, int? totalRecords, List<SonarrMissingRecord>? records})
SonarrMissing.fromJson(Map<String, dynamic> json)
Deserialize a JSON map to a SonarrMissing object.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
page int?
Page of the list of missing episodes
getter/setter pair
pageSize int?
Amount of records returned on this page
getter/setter pair
records List<SonarrMissingRecord>?
Missing episode records, each being an SonarrMissingRecord object.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sortDirection String?
Direction that the results were sorted
getter/setter pair
sortKey SonarrWantedMissingSortKey?
Key used to sort the results
getter/setter pair
totalRecords int?
Total amount of records available
getter/setter pair

Methods

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