mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-27 14:09:50 +00:00
41 lines
1.2 KiB
Dart
41 lines
1.2 KiB
Dart
import 'package:cw_zano/api/model/destination.dart';
|
|
|
|
class TransferParams {
|
|
final List<Destination> destinations;
|
|
final int fee;
|
|
final int mixin;
|
|
final String paymentId;
|
|
final String comment;
|
|
final bool pushPayer;
|
|
final bool hideReceiver;
|
|
|
|
TransferParams({
|
|
required this.destinations,
|
|
required this.fee,
|
|
required this.mixin,
|
|
required this.paymentId,
|
|
required this.comment,
|
|
required this.pushPayer,
|
|
required this.hideReceiver,
|
|
});
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
"destinations": destinations,
|
|
"fee": fee,
|
|
"mixin": mixin,
|
|
"payment_id": paymentId,
|
|
"comment": comment,
|
|
"push_payer": pushPayer,
|
|
"hide_receiver": hideReceiver,
|
|
};
|
|
|
|
factory TransferParams.fromJson(Map<String, dynamic> json) => TransferParams(
|
|
destinations: (json['destinations'] as List<dynamic>).map((e) => Destination.fromJson(e as Map<String, dynamic>)).toList(),
|
|
fee: json['fee'] as int,
|
|
mixin: json['mixin'] as int,
|
|
paymentId: json['payment_id'] as String,
|
|
comment: json['comment'] as String,
|
|
pushPayer: json["push_payer"] as bool,
|
|
hideReceiver: json["hide_receiver"] as bool,
|
|
);
|
|
}
|