You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/models/operations/listatsjobsrequest.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,5 +14,6 @@
14
14
|`query`|*Optional[str]*|:heavy_minus_sign:| Query string to search. eg. email address or name |
15
15
|`raw`|*Optional[str]*|:heavy_minus_sign:| Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar |
16
16
|`sort`|*Optional[str]*|:heavy_minus_sign:| N/A |
17
+
|`status`|*Optional[str]*|:heavy_minus_sign:| The status to filter by |
17
18
|`updated_gte`|*Optional[str]*|:heavy_minus_sign:| Return only results whose updated date is equal or greater to this value |
18
19
|`user_id`|*Optional[str]*|:heavy_minus_sign:| The user/employee ID to filter by |
Copy file name to clipboardExpand all lines: src/unified_python_sdk/models/operations/listatsjobs.py
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ class ListAtsJobsRequestTypedDict(TypedDict):
28
28
raw: NotRequired[str]
29
29
r"""Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"""
30
30
sort: NotRequired[str]
31
+
status: NotRequired[str]
32
+
r"""The status to filter by"""
31
33
updated_gte: NotRequired[str]
32
34
r"""Return only results whose updated date is equal or greater to this value"""
33
35
user_id: NotRequired[str]
@@ -84,6 +86,12 @@ class ListAtsJobsRequest(BaseModel):
0 commit comments