@@ -181,7 +181,7 @@ def get_target_record(self, target_id: str) -> Dict[str, Union[str, int]]:
181181 Get a given target's target record from the Target Management System.
182182
183183 See
184- https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API#How-To-Add -a-Target.
184+ https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API#How-To-Retrieve -a-Target-Record .
185185
186186 Args:
187187 target_id: The ID of the target to get details of.
@@ -232,6 +232,9 @@ def list_targets(self) -> List[str]:
232232 """
233233 List target IDs.
234234
235+ See
236+ https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API#How-To-Get-a-Target-List-for-a-Cloud-Database.
237+
235238 Returns:
236239 The IDs of all targets in the database.
237240 """
@@ -253,6 +256,9 @@ def get_target_summary_report(
253256 """
254257 Get a summary report for a target.
255258
259+ See
260+ https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API#How-To-Retrieve-a-Target-Summary-Report.
261+
256262 Args:
257263 target_id: The ID of the target to get a summary report for.
258264
@@ -279,6 +285,9 @@ def get_database_summary_report(self) -> Dict[str, Union[str, int]]:
279285 """
280286 Get a summary report for the database.
281287
288+ See
289+ https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API#How-To-Get-a-Database-Summary-Report.
290+
282291 Returns:
283292 Details of the database.
284293 """
@@ -297,6 +306,9 @@ def delete_target(self, target_id: str) -> None:
297306 """
298307 Delete a given target.
299308
309+ See
310+ https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API#How-To-Delete-a-Target.
311+
300312 Args:
301313 target_id: The ID of the target to delete.
302314 """
0 commit comments