Interface InvoicesService
- All Known Implementing Classes:
InvoicesServiceImpl
public interface InvoicesService
InvoicesService
-
Method Summary
Modifier and TypeMethodDescriptionDownload an invoice in PDF format by order code.download(String invoiceId, Long orderCode, RequestOptions<Void> options) Download an invoice in PDF format by order code.Download an invoice in PDF format by payment link ID.download(String invoiceId, String paymentLinkId, RequestOptions<Void> options) Download an invoice in PDF format by payment link ID.Retrieve invoices of a payment link by order code.get(Long orderCode, RequestOptions<Void> options) Retrieve invoices of a payment link by order code.Retrieve invoices of a payment link by payment link ID.get(String paymentLinkId, RequestOptions<Void> options) Retrieve invoices of a payment link by payment link ID.
-
Method Details
-
get
Retrieve invoices of a payment link by payment link ID.- Parameters:
paymentLinkId- Payment link ID.options- Additional options.- Returns:
- Invoice information.
-
get
Retrieve invoices of a payment link by order code.- Parameters:
orderCode- Order code.options- Additional options.- Returns:
- Invoice information.
-
get
Retrieve invoices of a payment link by payment link ID.- Parameters:
paymentLinkId- Payment link ID.- Returns:
- Invoice information.
-
get
Retrieve invoices of a payment link by order code.- Parameters:
orderCode- Order code.- Returns:
- Invoice information.
-
download
Download an invoice in PDF format by payment link ID.- Parameters:
invoiceId- Invoice ID.paymentLinkId- Payment link ID.options- Additional options.- Returns:
- Invoice file.
-
download
Download an invoice in PDF format by order code.- Parameters:
invoiceId- Invoice ID.orderCode- Order code.options- Additional options.- Returns:
- Invoice file.
-
download
Download an invoice in PDF format by payment link ID.- Parameters:
invoiceId- Invoice ID.paymentLinkId- Payment link ID.- Returns:
- Invoice file.
-
download
Download an invoice in PDF format by order code.- Parameters:
invoiceId- Invoice ID.orderCode- Order code.- Returns:
- Invoice file.
-