@@ -289,7 +289,7 @@ def find_network_by_entity_id(
289289 max_degrees (int): The maximum number of degrees in paths between search entities.
290290 build_out_degrees (int): The number of degrees of relationships to show around each search entity.
291291 build_out_max_entities (int): The maximum number of entities to return in the discovered network.
292- flags (int, optional): The maximum number of entities to return in the discovered network. Defaults to SzEngineFlags.SZ_FIND_PATH_DEFAULT_FLAGS .
292+ flags (int, optional): The maximum number of entities to return in the discovered network. Defaults to SzEngineFlags.SZ_FIND_NETWORK_DEFAULT_FLAGS .
293293
294294 Returns:
295295 str: A JSON document.
@@ -329,7 +329,7 @@ def find_network_by_record_id(
329329 max_degrees (int): The maximum number of degrees in paths between search entities.
330330 build_out_degrees (int): The number of degrees of relationships to show around each search entity.
331331 build_out_max_entities (int): The maximum number of entities to return in the discovered network.
332- flags (int, optional): Flags used to control information returned. Defaults to SzEngineFlags.SZ_FIND_PATH_DEFAULT_FLAGS .
332+ flags (int, optional): Flags used to control information returned. Defaults to SzEngineFlags.SZ_FIND_NETWORK_DEFAULT_FLAGS .
333333
334334 Returns:
335335 str: A JSON document.
@@ -622,7 +622,7 @@ def get_virtual_entity_by_record_id(
622622
623623 Args:
624624 record_keys (list(tuple(str, str))): The data source codes and record IDs identifying records to create the virtual entity from.
625- flags (int, optional): Flags used to control information returned. Defaults to SzEngineFlags.SZ_HOW_ENTITY_DEFAULT_FLAGS .
625+ flags (int, optional): Flags used to control information returned. Defaults to SzEngineFlags.SZ_VIRTUAL_ENTITY_DEFAULT_FLAGS .
626626
627627 Returns:
628628 str: A JSON document.
@@ -686,7 +686,7 @@ def preprocess_record(
686686
687687 Args:
688688 record_definition (str): A JSON document containing the record to be tested.
689- flags (int, optional): Flags used to control information returned. Defaults to 0 .
689+ flags (int, optional): Flags used to control information returned. Defaults to SzEngineFlags.SZ_RECORD_DEFAULT_FLAGS .
690690
691691 Returns:
692692 str: A JSON document containing metadata as specified by the flags.
@@ -845,7 +845,7 @@ def why_entities(
845845 Args:
846846 entity_id_1 (int): The entity ID for the starting entity of the search path.
847847 entity_id_2 (int): The entity ID for the ending entity of the search path.
848- flags (int, optional): Flags used to control information returned. Defaults to SzEngineFlags.SZ_WHY_ENTITY_DEFAULT_FLAGS .
848+ flags (int, optional): Flags used to control information returned. Defaults to SzEngineFlags.SZ_WHY_ENTITIES_DEFAULT_FLAGS .
849849
850850 Returns:
851851 str: A JSON document.
@@ -870,15 +870,15 @@ def why_record_in_entity(
870870 self ,
871871 data_source_code : str ,
872872 record_id : str ,
873- flags : int = SzEngineFlags .SZ_WHY_RECORDS_DEFAULT_FLAGS ,
873+ flags : int = SzEngineFlags .SZ_WHY_RECORD_IN_ENTITY_DEFAULT_FLAGS ,
874874 ) -> str :
875875 """
876876 The `why_record_in_entity` method determines why a record is included in an entity.
877877
878878 Args:
879879 data_source_code (str): Identifies the provenance of the data.
880880 record_id (str): The unique identifier within the records of the same data source.
881- flags (int, optional): Flags used to control information returned. Defaults to SzEngineFlags.SZ_WHY_ENTITY_DEFAULT_FLAGS .
881+ flags (int, optional): Flags used to control information returned. Defaults to SzEngineFlags.SZ_WHY_RECORD_IN_ENTITY_DEFAULT_FLAGS .
882882
883883 Returns:
884884 str: A JSON document.
0 commit comments