We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e6cf0e commit e241504Copy full SHA for e241504
README.md
@@ -141,10 +141,9 @@ You can make any arbitrary API call as well directly with the `.get` method.
141
Keep in mind, this returns a raw `Resource`
142
143
```java
144
-Resource resource = amadeus.get('/v2/reference-data/urls/checkin-links',
145
- Params.with("airlineCode", "BA"));
+Response response = amadeus.get("/v2/reference-data/urls/checkin-links", Params.with("airlineCode", "BA"));
146
147
-resource.getResult();
+response.getResult();
148
```
149
150
## Response
0 commit comments