PaymentStatusUpdateWebhook constructor

PaymentStatusUpdateWebhook({
  1. required String webhookType,
  2. required String webhookCode,
  3. required String paymentId,
  4. required PaymentInitiationPaymentStatus newPaymentStatus,
  5. required PaymentInitiationPaymentStatus oldPaymentStatus,
  6. required String? originalReference,
  7. String? adjustedReference,
  8. required DateTime? originalStartDate,
  9. required DateTime? adjustedStartDate,
  10. required DateTime timestamp,
  11. PlaidError? error,
  12. required WebhookEnvironmentValues environment,
})

Implementation

PaymentStatusUpdateWebhook({
  required this.webhookType,
  required this.webhookCode,
  required this.paymentId,
  required this.newPaymentStatus,
  required this.oldPaymentStatus,
  required this.originalReference,
  this.adjustedReference,
  required this.originalStartDate,
  required this.adjustedStartDate,
  required this.timestamp,
  this.error,
  required this.environment,
});