SonarrQualityProfile class

Model for a quality profile from Sonarr.

Annotations
  • @JsonSerializable(explicitToJson: true)

Constructors

SonarrQualityProfile({String? name, bool? upgradeAllowed, SonarrQualityProfileCutoff? cutoff, List<SonarrQualityProfileItem>? items, int? id})
SonarrQualityProfile.fromJson(Map<String, dynamic> json)
Deserialize a JSON map to a SonarrQualityProfile object.
factory

Properties

cutoff SonarrQualityProfileCutoff?
Cutoff profile information
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
id int?
Identifier of the quality profile
getter/setter pair
items List<SonarrQualityProfileItem>?
Nested profile items
getter/setter pair
name String?
Name of the profile
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
upgradeAllowed bool?
Are upgrades allowed?
getter/setter pair

Methods

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