mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-05 00:13:12 +00:00
49 lines
1 KiB
Dart
49 lines
1 KiB
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'backup.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class Backup {
|
|
factory Backup.fromJson(final Map<String, dynamic> json) =>
|
|
_$BackupFromJson(json);
|
|
Backup({required this.time, required this.id});
|
|
|
|
// Time of the backup
|
|
final DateTime time;
|
|
@JsonKey(name: 'short_id')
|
|
final String id;
|
|
}
|
|
|
|
enum BackupStatusEnum {
|
|
@JsonValue('NO_KEY')
|
|
noKey,
|
|
@JsonValue('NOT_INITIALIZED')
|
|
notInitialized,
|
|
@JsonValue('INITIALIZED')
|
|
initialized,
|
|
@JsonValue('BACKING_UP')
|
|
backingUp,
|
|
@JsonValue('RESTORING')
|
|
restoring,
|
|
@JsonValue('ERROR')
|
|
error,
|
|
@JsonValue('INITIALIZING')
|
|
initializing,
|
|
}
|
|
|
|
@JsonSerializable()
|
|
class BackupStatus {
|
|
factory BackupStatus.fromJson(final Map<String, dynamic> json) =>
|
|
_$BackupStatusFromJson(json);
|
|
BackupStatus({
|
|
required this.status,
|
|
required this.progress,
|
|
required this.errorMessage,
|
|
});
|
|
|
|
final BackupStatusEnum status;
|
|
final double progress;
|
|
@JsonKey(name: 'error_message')
|
|
final String? errorMessage;
|
|
}
|