We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 204b135 commit 172dc40Copy full SHA for 172dc40
1 file changed
huntflow_api_client/entities/applicant_reponse.py
@@ -1,4 +1,4 @@
1
-from typing import Any, Dict
+from typing import Any, Dict, Optional
2
3
from huntflow_api_client.entities.base import BaseEntity, ListEntityMixin
4
from huntflow_api_client.models.response.applicant_response import ApplicantResponsesListResponse
@@ -10,7 +10,7 @@ async def list(
10
account_id: int,
11
applicant_id: int,
12
count: int = 30,
13
- next_page_cursor: str | None = None,
+ next_page_cursor: Optional[str] = None,
14
) -> ApplicantResponsesListResponse:
15
"""
16
API method reference:
0 commit comments