SourceAcceptance constructor

const SourceAcceptance({
  1. DateTime? date,
  2. String? ip,
  3. SourceOffline? offline,
  4. AccountOwnershipDeclaration? online,
  5. required MandateBacsDebitNetworkStatus status,
  6. CustomerAcceptanceType? type,
  7. String? userAgent,
})

mandate_acceptance_params

The parameters required to notify Stripe of a mandate acceptance or refusal by the customer.

Implementation

const SourceAcceptance({
  this.date,
  this.ip,
  this.offline,
  this.online,
  required this.status,
  this.type,
  this.userAgent,
});