ApplicationFee constructor

const ApplicationFee({
  1. required AccountOrId account,
  2. required int amount,
  3. required int amountRefunded,
  4. required ApplicationOrId application,
  5. BalanceTransactionOrId? balanceTransaction,
  6. required ChargeOrId charge,
  7. required DateTime created,
  8. required String currency,
  9. required String id,
  10. required bool livemode,
  11. ChargeOrId? originatingTransaction,
  12. required bool refunded,
  13. required ApplicationFeeRefunds refunds,
})

PlatformFee

Implementation

const ApplicationFee({
  required this.account,
  required this.amount,
  required this.amountRefunded,
  required this.application,
  this.balanceTransaction,
  required this.charge,
  required this.created,
  required this.currency,
  required this.id,
  required this.livemode,
  this.originatingTransaction,
  required this.refunded,
  required this.refunds,
});