Transactions constructor

Transactions({
  1. String? id,
  2. String? subscriberId,
  3. String? bookingId,
  4. String? amount,
  5. String? vat,
  6. String? vatAmount,
  7. String? fee,
  8. String? feeAmount,
  9. String? totalAmount,
  10. String? amountToPay,
  11. String? currency,
  12. String? currenyToPay,
  13. String? type,
  14. String? purpose,
  15. String? status,
  16. String? paymentAddress,
  17. String? transactionId,
  18. String? transactionHash,
  19. String? meta,
  20. String? provider,
  21. String? paymentDate,
  22. String? additionalData,
  23. String? receiptUrl,
  24. String? comment,
  25. String? reference,
  26. String? createdAt,
  27. String? updatedAt,
  28. BookingHistory? booking,
})

Implementation

Transactions({
  this.id,
  this.subscriberId,
  this.bookingId,
  this.amount,
  this.vat,
  this.vatAmount,
  this.fee,
  this.feeAmount,
  this.totalAmount,
  this.amountToPay,
  this.currency,
  this.currenyToPay,
  this.type,
  this.purpose,
  this.status,
  this.paymentAddress,
  this.transactionId,
  this.transactionHash,
  this.meta,
  this.provider,
  this.paymentDate,
  this.additionalData,
  this.receiptUrl,
  this.comment,
  this.reference,
  this.createdAt,
  this.updatedAt,
  this.booking,
});