PaymentStatusModel constructor

PaymentStatusModel({
  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? type,
  13. String? purpose,
  14. String? status,
  15. String? paymentAddress,
  16. String? transactionId,
  17. String? transactionHash,
  18. Meta? meta,
  19. String? provider,
  20. DateTime? paymentDate,
  21. DateTime? createdAt,
  22. DateTime? updatedAt,
})

Implementation

PaymentStatusModel({
  this.id,
  this.subscriberId,
  this.bookingId,
  this.amount,
  this.vat,
  this.vatAmount,
  this.fee,
  this.feeAmount,
  this.totalAmount,
  this.amountToPay,
  this.currency,
  this.type,
  this.purpose,
  this.status,
  this.paymentAddress,
  this.transactionId,
  this.transactionHash,
  this.meta,
  this.provider,
  this.paymentDate,
  this.createdAt,
  this.updatedAt,
});