74 lines
2.8 KiB
Dart
74 lines
2.8 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'transaction_controller.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_FormData _$FormDataFromJson(Map<String, dynamic> json) => _FormData(
|
|
id: json['id'] as String?,
|
|
type: json['type'] as String,
|
|
billClientId: json['billClientId'] as String,
|
|
debitRef: json['debitRef'] as String,
|
|
debitCurrency: json['debitCurrency'] as String,
|
|
amount: json['amount'] as String,
|
|
creditAccount: json['creditAccount'] as String,
|
|
creditPhone: json['creditPhone'] as String?,
|
|
creditName: json['creditName'] as String?,
|
|
creditEmail: json['creditEmail'] as String?,
|
|
billName: json['billName'] as String,
|
|
errorMessage: json['errorMessage'] as String?,
|
|
status: json['status'] as String,
|
|
paymentProcessorLabel: json['paymentProcessorLabel'] as String,
|
|
paymentProcessorName: json['paymentProcessorName'] as String,
|
|
paymentProcessorImage: json['paymentProcessorImage'] as String,
|
|
providerImage: json['providerImage'] as String,
|
|
providerLabel: json['providerLabel'] as String,
|
|
userId: json['userId'] as String,
|
|
debitPhone: json['debitPhone'] as String?,
|
|
debitAccount: json['debitAccount'] as String?,
|
|
productUid: json['productUid'] as String?,
|
|
billProductName: json['billProductName'] as String?,
|
|
trace: json['trace'] as String?,
|
|
authType: json['authType'] as String?,
|
|
charge: json['charge'] as String?,
|
|
gatewayCharge: json['gatewayCharge'] as String?,
|
|
tax: json['tax'] as String?,
|
|
totalAmount: json['totalAmount'] as String?,
|
|
region: json['region'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$FormDataToJson(_FormData instance) => <String, dynamic>{
|
|
'id': instance.id,
|
|
'type': instance.type,
|
|
'billClientId': instance.billClientId,
|
|
'debitRef': instance.debitRef,
|
|
'debitCurrency': instance.debitCurrency,
|
|
'amount': instance.amount,
|
|
'creditAccount': instance.creditAccount,
|
|
'creditPhone': instance.creditPhone,
|
|
'creditName': instance.creditName,
|
|
'creditEmail': instance.creditEmail,
|
|
'billName': instance.billName,
|
|
'errorMessage': instance.errorMessage,
|
|
'status': instance.status,
|
|
'paymentProcessorLabel': instance.paymentProcessorLabel,
|
|
'paymentProcessorName': instance.paymentProcessorName,
|
|
'paymentProcessorImage': instance.paymentProcessorImage,
|
|
'providerImage': instance.providerImage,
|
|
'providerLabel': instance.providerLabel,
|
|
'userId': instance.userId,
|
|
'debitPhone': instance.debitPhone,
|
|
'debitAccount': instance.debitAccount,
|
|
'productUid': instance.productUid,
|
|
'billProductName': instance.billProductName,
|
|
'trace': instance.trace,
|
|
'authType': instance.authType,
|
|
'charge': instance.charge,
|
|
'gatewayCharge': instance.gatewayCharge,
|
|
'tax': instance.tax,
|
|
'totalAmount': instance.totalAmount,
|
|
'region': instance.region,
|
|
};
|