Skip to content

Commit

Permalink
Fix page iterator link in README.mustache template
Browse files Browse the repository at this point in the history
  • Loading branch information
jv-asana committed Dec 15, 2023
1 parent c03c565 commit 3862ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codegen/templates/README.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ It returns:
```

2: Endpoints that return an array of resources (EX: [get_tasks](https://github.com/Asana/python-asana/blob/v{{packageVersion}}/{{apiDocPath}}TasksApi.md#get_tasks) ([Get multiple tasks](https://developers.asana.com/reference/gettasks)), [get_projects](https://github.com/Asana/python-asana/blob/v{{packageVersion}}/{{apiDocPath}}ProjectsApi.md#get_projects) ([Get multiple projects](https://developers.asana.com/reference/getprojects)), etc...)
will return a generator object ([PageIterator.items](https://github.com/Asana/python-asana/blob/v{{packageVersion}}/{{packageName}}/paget_iterator.py)) that you can use to iterate through each result.
will return a generator object ([PageIterator.items](https://github.com/Asana/python-asana/blob/v{{packageVersion}}/{{packageName}}/pagination/paget_iterator.py)) that you can use to iterate through each result.

Example usage 1:
```python
Expand Down

0 comments on commit 3862ce3

Please sign in to comment.