:param corpus Corpus: The corpus that contains the entities to list.
:param name str: For filter entities by part of their name (case-insensitive)
:param name str: uuid for filter entities by part of their name (case-insensitive)
:param parent str: uuid for restrict entities to those linked to all transcriptions of an element and all its descendants. Note that links to metadata are ignored.
"""
query_params={}
assertcorpusandisinstance(
corpus,Corpus
),"corpus shouldn't be null and should be a Corpus"
assertnameandisinstance(
name,str
),"name shouldn't be null and should be of type str"
assertparentandisinstance(
parent,str
),"parent shouldn't be null and should be of type str"
ifnameisnotNone:
assertnameandisinstance(name,str),"name should be of type str"