mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
69 lines
2.5 KiB
Dart
69 lines
2.5 KiB
Dart
import 'package:cw_zano/api/model/employed_entries.dart';
|
|
import 'package:cw_zano/api/model/subtransfer.dart';
|
|
|
|
class History {
|
|
final String comment;
|
|
final EmployedEntries employedEntries;
|
|
final int fee;
|
|
final int height;
|
|
final bool isMining;
|
|
final bool isMixing;
|
|
final bool isService;
|
|
final String paymentId;
|
|
final List<String> remoteAddresses;
|
|
final List<String> remoteAliases;
|
|
final bool showSender;
|
|
final List<Subtransfer> subtransfers;
|
|
final int timestamp;
|
|
final int transferInternalIndex;
|
|
final int txBlobSize;
|
|
final String txHash;
|
|
final int txType;
|
|
final int unlockTime;
|
|
|
|
History({
|
|
required this.comment,
|
|
required this.employedEntries,
|
|
required this.fee,
|
|
required this.height,
|
|
required this.isMining,
|
|
required this.isMixing,
|
|
required this.isService,
|
|
required this.paymentId,
|
|
required this.remoteAddresses,
|
|
required this.remoteAliases,
|
|
required this.showSender,
|
|
required this.subtransfers,
|
|
required this.timestamp,
|
|
required this.transferInternalIndex,
|
|
required this.txBlobSize,
|
|
required this.txHash,
|
|
required this.txType,
|
|
required this.unlockTime,
|
|
});
|
|
|
|
factory History.fromJson(Map<String, dynamic> json) => History(
|
|
comment: json['comment'] as String,
|
|
employedEntries: EmployedEntries.fromJson(
|
|
json['employed_entries'] as Map<String, dynamic>),
|
|
fee: json['fee'] as int,
|
|
height: json['height'] as int,
|
|
isMining: json['is_mining'] as bool,
|
|
isMixing: json['is_mixing'] as bool,
|
|
isService: json['is_service'] as bool,
|
|
paymentId: json['payment_id'] as String,
|
|
remoteAddresses: json['remote_addresses'] == null ? [] :
|
|
(json['remote_addresses'] as List<dynamic>).cast<String>(),
|
|
remoteAliases: json['remote_aliases'] == null ? [] : (json['remote_aliases'] as List<dynamic>).cast<String>(),
|
|
showSender: json['show_sender'] as bool,
|
|
subtransfers: (json['subtransfers'] as List<dynamic>)
|
|
.map((e) => Subtransfer.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
timestamp: json['timestamp'] as int,
|
|
transferInternalIndex: json['transfer_internal_index'] is double ? (json['transfer_internal_index'] as double).toInt() : json['transfer_internal_index'] as int,
|
|
txBlobSize: json['tx_blob_size'] as int,
|
|
txHash: json['tx_hash'] as String,
|
|
txType: json['tx_type'] as int,
|
|
unlockTime: json['unlock_time'] as int,
|
|
);
|
|
}
|