SourceMandate constructor

const SourceMandate({
  1. SourceAcceptance? acceptance,
  2. int? amount,
  3. String? currency,
  4. SourceInterval? interval,
  5. SourceNotificationMethod? notificationMethod,
})

mandate_params

Information about a mandate possibility attached to a source object (generally for bank debits) as well as its acceptance status.

Implementation

const SourceMandate({
  this.acceptance,
  this.amount,
  this.currency,
  this.interval,
  this.notificationMethod,
});