MessagePaymentSuccessfulBot constructor

MessagePaymentSuccessfulBot({
  1. String? extra,
  2. int? client_id,
  3. string? currency,
  4. int53? total_amount,
  5. Bool? is_recurring,
  6. Bool? is_first_recurring,
  7. bytes? invoice_payload,
  8. string? shipping_option_id,
  9. OrderInfo? order_info,
  10. string? telegram_payment_charge_id,
  11. string? provider_payment_charge_id,
})

Implementation

MessagePaymentSuccessfulBot({
  super.extra,
  super.client_id,
  this.currency,
  this.total_amount,
  this.is_recurring,
  this.is_first_recurring,
  this.invoice_payload,
  this.shipping_option_id,
  this.order_info,
  this.telegram_payment_charge_id,
  this.provider_payment_charge_id,
});