Skip to content
Merged
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
8 changes: 7 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,13 @@
]
},
{
"name": "Readers"
"name": "Readers",
"description": "A reader represents a device that accepts payments. You can use the SumUp Solo to accept in-person payments.",
"x-core-objects": [
{
"$ref": "#/components/schemas/Reader"
}
]
},
{
"name": "Members",
Expand Down
7 changes: 6 additions & 1 deletion src/main/java/com/sumup/sdk/clients/ReadersAsyncClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
import java.util.Objects;
import java.util.concurrent.CompletableFuture;

/** Client for the "Readers" API group. */
/**
* Client for the "Readers" API group.
*
* <p>A reader represents a device that accepts payments. You can use the SumUp Solo to accept
* in-person payments.
*/
public final class ReadersAsyncClient {
private final ApiClient apiClient;

Expand Down
7 changes: 6 additions & 1 deletion src/main/java/com/sumup/sdk/clients/ReadersClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@
import java.util.Map;
import java.util.Objects;

/** Client for the "Readers" API group. */
/**
* Client for the "Readers" API group.
*
* <p>A reader represents a device that accepts payments. You can use the SumUp Solo to accept
* in-person payments.
*/
public final class ReadersClient {
private final ApiClient apiClient;

Expand Down
Loading