PaymentReceipt constructor

PaymentReceipt({
  1. String? extra,
  2. int? client_id,
  3. string? title,
  4. FormattedText? description,
  5. Photo? photo,
  6. int32? date,
  7. int53? seller_bot_user_id,
  8. int53? payment_provider_user_id,
  9. Invoice? invoice,
  10. OrderInfo? order_info,
  11. ShippingOption? shipping_option,
  12. string? credentials_title,
  13. int53? tip_amount,
})

Implementation

PaymentReceipt({
  super.extra,
  super.client_id,
  this.title,
  this.description,
  this.photo,
  this.date,
  this.seller_bot_user_id,
  this.payment_provider_user_id,
  this.invoice,
  this.order_info,
  this.shipping_option,
  this.credentials_title,
  this.tip_amount,
});