Skip to content
Merged
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the
- [Assertions](#assertions)
- [Read Assertions](#read-assertions)
- [Write Assertions](#write-assertions)
- [Calling Other Endpoints](#calling-other-endpoints)
- [Retries](#retries)
- [Calling Other Endpoints](#calling-other-endpoints)
- [API Endpoints](#api-endpoints)
- [Models](#models)
- [OpenTelemetry](#opentelemetry)
Expand Down Expand Up @@ -1238,7 +1238,7 @@ System.out.println("Headers: " + rawResponse.getHeaders());
class CustomEndpointResponse {
private boolean allowed;
private String reason;

public boolean isAllowed() { return allowed; }
public void setAllowed(boolean allowed) { this.allowed = allowed; }
public String getReason() { return reason; }
Expand Down Expand Up @@ -1287,6 +1287,7 @@ For a complete working example, see [examples/api-executor](examples/api-executo

See [docs/ApiExecutor.md](docs/ApiExecutor.md) for complete API reference and examples for both `ApiExecutor` and `StreamingApiExecutor`.


### API Endpoints

| Method | HTTP request | Description |
Expand Down
Loading