SourceMandateNotification constructor

const SourceMandateNotification({
  1. SourceMandateNotificationAcssDebitData? acssDebit,
  2. int? amount,
  3. SourceMandateNotificationBacsDebitData? bacsDebit,
  4. required DateTime created,
  5. required String id,
  6. required bool livemode,
  7. required String reason,
  8. SourceMandateNotificationSepaDebitData? sepaDebit,
  9. required Source source,
  10. required String status,
  11. required String type,
})

SourceMandateNotification

Source mandate notifications should be created when a notification related to a source mandate must be sent to the payer. They will trigger a webhook or deliver an email to the customer.

Implementation

const SourceMandateNotification({
  this.acssDebit,
  this.amount,
  this.bacsDebit,
  required this.created,
  required this.id,
  required this.livemode,
  required this.reason,
  this.sepaDebit,
  required this.source,
  required this.status,
  required this.type,
});