Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def list(
item.
* "top" parameter (int, optional) specifies the number of entries to
return. A maximal of 1000 entries can be returned in one call. To fetch
more, you can specify "start" with the last retuned entry’s Id of the
more, you can specify "start" with the last returned entry’s Id of the
current call.
<br />
For example, total 5 large person lists: "list1", ..., "list5".
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def get_training_status(

def list(
self, start=None, top=1000, return_recognition_model=False, custom_headers=None, raw=False, **operation_config):
"""List all existing large person groups’s largePersonGroupId, name,
"""List all existing large person groups’ largePersonGroupId, name,
userData and recognitionModel.<br />
* Large person groups are stored in alphabetical order of
largePersonGroupId.
Expand All @@ -354,7 +354,7 @@ def list(
first item.
* "top" parameter (int, optional) specifies the number of entries to
return. A maximal of 1000 entries can be returned in one call. To fetch
more, you can specify "start" with the last retuned entry’s Id of the
more, you can specify "start" with the last returned entry’s Id of the
current call.
<br />
For example, total 5 large person groups: "group1", ..., "group5".
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -338,15 +338,15 @@ def get_training_status(

def list(
self, start=None, top=1000, return_recognition_model=False, custom_headers=None, raw=False, **operation_config):
"""List person groups’s personGroupId, name, userData and
"""List person groups’ personGroupId, name, userData and
recognitionModel.<br />
* Person groups are stored in alphabetical order of personGroupId.
* "start" parameter (string, optional) is a user-provided personGroupId
value that returned entries have larger ids by string comparison.
"start" set to empty to indicate return from the first item.
* "top" parameter (int, optional) specifies the number of entries to
return. A maximal of 1000 entries can be returned in one call. To fetch
more, you can specify "start" with the last retuned entry’s Id of the
more, you can specify "start" with the last returned entry’s Id of the
current call.
<br />
For example, total 5 person groups: "group1", ..., "group5".
Expand Down