Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sdk-generation-log/documentcollector.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"service": "documentcollector",
"project": "java",
"generatedAt": "2026-08-25T14:57:26Z",
"openapiCommitSha": "bee086f2cd666ac7cb5b5ba2813a8b5dc943c2d2",
"generatedAt": "2026-08-27T13:59:13Z",
"openapiCommitSha": "4265e8ffe6cc4c35fe6804d5a395598621d3da53",
"automationCommitSha": "2f180b958babc6bbd6f0b6b73d7e4c6feefe256e",
"libraryCommitSha": "b652e70837e8c545db46ca83a1f6a8d58d241850"
"libraryCommitSha": "db3374f9ef7e3af43c3781af2d0ca31fc6b120d2"
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Cross-border Invoices API
* Document Collector API
*
* The version of the OpenAPI document: 1
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Cross-border Invoices API
* Document Collector API
*
* The version of the OpenAPI document: 1
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Cross-border Invoices API
* Document Collector API
*
* The version of the OpenAPI document: 1
*
Expand All @@ -16,7 +16,10 @@
import java.util.*;
import java.util.logging.Logger;

/** The document context indicating the type of document being uploaded */
/**
* The document context indicating the type of document being uploaded. Possible values:
* **paCbInvoice**.
*/
public enum DocumentContext {
PACBINVOICE("paCbInvoice");

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Cross-border Invoices API
* Document Collector API
*
* The version of the OpenAPI document: 1
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Cross-border Invoices API
* Document Collector API
*
* The version of the OpenAPI document: 1
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Cross-border Invoices API
* Document Collector API
*
* The version of the OpenAPI document: 1
*
Expand Down Expand Up @@ -59,7 +59,7 @@ public DocumentsApi(Client client, String baseURL) {
* @param context {@link DocumentContext } (required)
* @param _file {@link File } The PDF file to upload. Filename must be {pspReference}.pdf
* (required)
* @param merchantAccount {@link String } The merchant account that the document belongs to
* @param merchantAccount {@link String } The merchant account that the document belongs to.
* (required)
* @return {@link DocumentUploadResponse }
* @throws ApiException if fails to make API call
Expand All @@ -76,7 +76,7 @@ public DocumentUploadResponse uploadCrossBorderInvoice(
* @param context {@link DocumentContext } (required)
* @param _file {@link File } The PDF file to upload. Filename must be {pspReference}.pdf
* (required)
* @param merchantAccount {@link String } The merchant account that the document belongs to
* @param merchantAccount {@link String } The merchant account that the document belongs to.
* (required)
* @param requestOptions {@link RequestOptions } Object to store additional HTTP headers such as
* idempotency-keys (optional)
Expand Down