DeletedDiscount constructor

const DeletedDiscount({
  1. String? checkoutSession,
  2. required Coupon coupon,
  3. BankAccountCustomerOrId? customer,
  4. required String id,
  5. String? invoice,
  6. String? invoiceItem,
  7. PromotionCodeOrId? promotionCode,
  8. required DateTime start,
  9. String? subscription,
})

DeletedDiscount

Implementation

const DeletedDiscount({
  this.checkoutSession,
  required this.coupon,
  this.customer,
  required this.id,
  this.invoice,
  this.invoiceItem,
  this.promotionCode,
  required this.start,
  this.subscription,
});