File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6887,6 +6887,7 @@ def create_link(
68876887 output_id : str ,
68886888 output_type : str ,
68896889 link_name : Optional [str ] = None ,
6890+ data : Optional [dict [str , Any ]] = None ,
68906891) -> CreateLinkData :
68916892 """Create link between 2 entities.
68926893
@@ -6906,7 +6907,8 @@ def create_link(
69066907 output_id (str): Output entity id.
69076908 output_type (str): Entity type of output entity.
69086909 link_name (Optional[str]): Name of link.
6909- Available from server version '1.0.0-rc.6'.
6910+ data (Optional[dict[str, Any]]): Additional data to be stored
6911+ with the link.
69106912
69116913 Returns:
69126914 CreateLinkData: Information about link.
@@ -6924,6 +6926,7 @@ def create_link(
69246926 output_id = output_id ,
69256927 output_type = output_type ,
69266928 link_name = link_name ,
6929+ data = data ,
69276930 )
69286931
69296932
You can’t perform that action at this time.
0 commit comments