ATHMovilPaymentResponse constructor

ATHMovilPaymentResponse({
  1. required String? publicToken,
  2. required String? callbackSchema,
  3. required double? total,
  4. required int? timeout,
  5. String? paymentId,
  6. double? tax,
  7. double? subtotal,
  8. String? metadata1,
  9. String? metadata2,
  10. List<ATHMovilItem>? items,
  11. required String? status,
  12. required String? date,
  13. String? referenceNumber,
  14. String? dailyTransactionID,
  15. String? name,
  16. String? phoneNumber,
  17. String? email,
  18. double? fee,
  19. double? netAmount,
})

Implementation

ATHMovilPaymentResponse({
  required this.publicToken,
  required this.callbackSchema,
  required this.total,
  required this.timeout,
  this.paymentId,
  this.tax,
  this.subtotal,
  this.metadata1,
  this.metadata2,
  this.items,
  required this.status,
  required this.date,
  this.referenceNumber,
  this.dailyTransactionID,
  this.name,
  this.phoneNumber,
  this.email,
  this.fee,
  this.netAmount,
});