-
Notifications
You must be signed in to change notification settings - Fork 0
Criar link de pagamentos
João Pedro Truchinski Borba edited this page Nov 26, 2023
·
1 revision
PaymentLink paymentLink = PaymentLink.creator()
.setName("name")
.setBillingType(BillingType.PIX)
.setChargeType(PaymentLinkChargeType.INSTALLMENT)
.setEndDate(new Date())
.setDueDateLimitDays(10)
.setMaxInstallmentCount(2)
.create();