TDeleteWalletsBody.fromJson constructor

TDeleteWalletsBody.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory TDeleteWalletsBody.fromJson(Map<String, dynamic> json) {
  final _timestampMs = json['timestampMs'] as String?;
  final _organizationId = json['organizationId'] as String?;
  final _walletIds = (json['walletIds'] as List).map((e) => e as String).toList();
  final _deleteWithoutExport = json['deleteWithoutExport'] as bool?;
  return TDeleteWalletsBody(
    timestampMs: _timestampMs,
    organizationId: _organizationId,
    walletIds: _walletIds,
    deleteWithoutExport: _deleteWithoutExport,
  );
}