InvoiceRequestMessage constructor

InvoiceRequestMessage({
  1. String? email,
  2. String? dueDate,
  3. List<Item>? items,
  4. PayerModel? payer,
  5. String? returnUrl,
  6. String? expiredUrl,
  7. String? notificationUrl,
  8. int? taxCents,
  9. bool? enableLateFine,
  10. String? latePaymentFine,
  11. bool? enableProportionalDailyTax,
  12. int? discountCents,
  13. String? customerId,
  14. bool? ignoreDueDateMail,
  15. String? subscriptionId,
  16. String? paymentMethod,
  17. int? credits,
  18. List<Logs>? logs,
  19. bool? enableEarlyPaymentDiscount,
  20. List<EarlyPaymentDiscounts>? earlyPaymentDiscounts,
  21. List<CustomVariables>? customVariables,
})

Implementation

InvoiceRequestMessage({
  this.email,
  this.dueDate,
  this.items,
  this.payer,
  this.returnUrl,
  this.expiredUrl,
  this.notificationUrl,
  this.taxCents,
  this.enableLateFine,
  this.latePaymentFine,
  this.enableProportionalDailyTax,
  this.discountCents,
  this.customerId,
  this.ignoreDueDateMail,
  this.subscriptionId,
  this.paymentMethod,
  this.credits,
  this.logs,
  this.enableEarlyPaymentDiscount,
  this.earlyPaymentDiscounts,
  this.customVariables,
});