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 6fa9187 commit 4ccab32Copy full SHA for 4ccab32
sdk/diffgram/job/job.py
@@ -242,7 +242,9 @@ def list(self,
242
limit = 100,
243
status = ["All"],
244
name = None,
245
- tags = []):
+ tags = [],
246
+ page_number = 1,
247
+ ):
248
"""
249
250
:param limit:
@@ -270,7 +272,8 @@ def list(self,
270
272
"search": name,
271
273
"status": status,
274
"tag_list": tag_id_list,
- "project_string_id": self.client.project_string_id
275
+ "project_string_id": self.client.project_string_id,
276
+ "page_number": page_number
277
}
278
279
0 commit comments