PaymentsPaymentReceipt constructor

const PaymentsPaymentReceipt({
  1. required DateTime date,
  2. required int botId,
  3. required int providerId,
  4. required String title,
  5. required String description,
  6. WebDocumentBase? photo,
  7. required InvoiceBase invoice,
  8. PaymentRequestedInfoBase? info,
  9. ShippingOptionBase? shipping,
  10. int? tipAmount,
  11. required String currency,
  12. required int totalAmount,
  13. required String credentialsTitle,
  14. required List<UserBase> users,
})

Payments Payment Receipt constructor.

Implementation

const PaymentsPaymentReceipt({
  required this.date,
  required this.botId,
  required this.providerId,
  required this.title,
  required this.description,
  this.photo,
  required this.invoice,
  this.info,
  this.shipping,
  this.tipAmount,
  required this.currency,
  required this.totalAmount,
  required this.credentialsTitle,
  required this.users,
}) : super._();