InvoicePaymentRequest constructor

InvoicePaymentRequest({
  1. String? cardId,
  2. String? uid,
  3. String? dueDate,
  4. InvoiceAutomaticPaymentSource? automaticPaymentSource,
  5. Money? computedAmountMoney,
  6. Money? fixedAmountRequestedMoney,
  7. String? percentageRequested,
  8. List<InvoicePaymentReminder>? reminders,
  9. InvoiceRequestMethod? requestMethod,
  10. InvoiceRequestType? requestType,
  11. Money? roundingAdjustmentIncludedMoney,
  12. bool? tippingEnabled,
  13. Money? totalCompletedAmountMoney,
})

Implementation

InvoicePaymentRequest(
    {this.cardId,
    this.uid,
    this.dueDate,
    this.automaticPaymentSource,
    this.computedAmountMoney,
    this.fixedAmountRequestedMoney,
    this.percentageRequested,
    this.reminders,
    this.requestMethod,
    this.requestType,
    this.roundingAdjustmentIncludedMoney,
    this.tippingEnabled,
    this.totalCompletedAmountMoney});