2023-09-08 11:50:21 +02:00
|
|
|
import 'package:json_annotation/json_annotation.dart';
|
2023-12-29 21:39:54 +01:00
|
|
|
import 'package:prasule/api/category.dart';
|
2023-10-09 17:28:05 +02:00
|
|
|
import 'package:prasule/api/entry_data.dart';
|
2023-12-29 21:39:54 +01:00
|
|
|
|
2024-01-08 21:19:15 +01:00
|
|
|
part 'wallet_entry.g.dart';
|
2023-09-08 11:50:21 +02:00
|
|
|
|
|
|
|
@JsonSerializable()
|
2023-10-09 17:28:05 +02:00
|
|
|
|
|
|
|
/// This is an entry containing a single item
|
|
|
|
class WalletSingleEntry {
|
2023-12-29 21:39:54 +01:00
|
|
|
/// This is an entry containing a single item
|
2023-12-31 12:41:10 +01:00
|
|
|
WalletSingleEntry({
|
|
|
|
required this.data,
|
|
|
|
required this.type,
|
|
|
|
required this.date,
|
|
|
|
required this.category,
|
|
|
|
required this.id,
|
|
|
|
});
|
|
|
|
|
2024-01-31 07:54:29 +01:00
|
|
|
/// Connects the generated fromJson method
|
2023-10-09 17:28:05 +02:00
|
|
|
factory WalletSingleEntry.fromJson(Map<String, dynamic> json) =>
|
|
|
|
_$WalletSingleEntryFromJson(json);
|
2023-09-08 11:50:21 +02:00
|
|
|
|
2023-12-29 21:39:54 +01:00
|
|
|
/// Expense or income
|
|
|
|
EntryType type;
|
|
|
|
|
|
|
|
/// Actual entry data
|
|
|
|
EntryData data;
|
|
|
|
|
|
|
|
/// Date of entry creation
|
|
|
|
DateTime date;
|
|
|
|
|
|
|
|
/// Selected category
|
|
|
|
WalletCategory category;
|
|
|
|
|
|
|
|
/// Unique entry ID
|
|
|
|
int id;
|
|
|
|
|
2024-01-31 07:54:29 +01:00
|
|
|
/// Connects the generated toJson method
|
2023-10-09 17:28:05 +02:00
|
|
|
Map<String, dynamic> toJson() => _$WalletSingleEntryToJson(this);
|
2023-09-08 11:50:21 +02:00
|
|
|
}
|