PaymentInitiationPaymentCreateRequest constructor

PaymentInitiationPaymentCreateRequest({
  1. String? clientId,
  2. String? secret,
  3. required String recipientId,
  4. required String reference,
  5. required PaymentAmount amount,
  6. ExternalPaymentScheduleRequest? schedule,
  7. ExternalPaymentOptions? options,
})

Implementation

PaymentInitiationPaymentCreateRequest({
  this.clientId,
  this.secret,
  required this.recipientId,
  required this.reference,
  required this.amount,
  this.schedule,
  this.options,
});