2021-12-06 18:31:19 +00:00
|
|
|
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
|
|
|
|
part 'backup.g.dart';
|
|
|
|
|
|
|
|
@JsonSerializable()
|
|
|
|
class Backup {
|
2022-06-09 21:13:06 +00:00
|
|
|
factory Backup.fromJson(final Map<String, dynamic> json) =>
|
|
|
|
_$BackupFromJson(json);
|
2021-12-06 18:31:19 +00:00
|
|
|
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 {
|
2022-06-05 19:36:32 +00:00
|
|
|
factory BackupStatus.fromJson(final Map<String, dynamic> json) =>
|
|
|
|
_$BackupStatusFromJson(json);
|
2022-06-09 21:13:06 +00:00
|
|
|
BackupStatus({
|
|
|
|
required this.status,
|
|
|
|
required this.progress,
|
|
|
|
required this.errorMessage,
|
|
|
|
});
|
2021-12-06 18:31:19 +00:00
|
|
|
|
|
|
|
final BackupStatusEnum status;
|
|
|
|
final double progress;
|
|
|
|
@JsonKey(name: 'error_message')
|
2021-12-09 03:22:33 +00:00
|
|
|
final String? errorMessage;
|
2021-12-06 18:31:19 +00:00
|
|
|
}
|