mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 04:32:32 +00:00
37 lines
907 B
Dart
37 lines
907 B
Dart
import 'package:lunasea/core.dart';
|
|
|
|
part 'request_count.g.dart';
|
|
|
|
@JsonSerializable(explicitToJson: true, includeIfNull: false)
|
|
class OverseerrRequestCount {
|
|
@JsonKey(name: 'pending')
|
|
int? pending;
|
|
|
|
@JsonKey(name: 'approved')
|
|
int? approved;
|
|
|
|
@JsonKey(name: 'processing')
|
|
int? processing;
|
|
|
|
@JsonKey(name: 'available')
|
|
int? available;
|
|
|
|
OverseerrRequestCount({
|
|
this.pending,
|
|
this.approved,
|
|
this.processing,
|
|
this.available,
|
|
});
|
|
|
|
/// Returns a JSON-encoded string version of this object.
|
|
@override
|
|
String toString() => json.encode(this.toJson());
|
|
|
|
/// Deserialize a JSON map to a [OverseerrRequestCount] object.
|
|
factory OverseerrRequestCount.fromJson(Map<String, dynamic> json) =>
|
|
_$OverseerrRequestCountFromJson(json);
|
|
|
|
/// Serialize a [OverseerrRequestCount] object to a JSON map.
|
|
Map<String, dynamic> toJson() => _$OverseerrRequestCountToJson(this);
|
|
}
|