We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0defa21 commit 3e73768Copy full SHA for 3e73768
README.md
@@ -31,7 +31,7 @@ client = Finch(
31
)
32
33
page = client.hris.directory.list()
34
-print(page.page)
+print(page.individuals)
35
```
36
37
## Async usage
@@ -49,7 +49,7 @@ client = AsyncFinch(
49
50
async def main() -> None:
51
page = await client.hris.directory.list()
52
- print(page.page)
+ print(page.individuals)
53
54
55
asyncio.run(main())
@@ -141,7 +141,7 @@ from finch import Finch
141
client = Finch()
142
143
144
145
146
147
## Webhook Verification
0 commit comments