get_ict_fixtures_props#
- Layer.get_ict_fixtures_props(request)#
Return the properties for each ICT fixture given a comma-separated list of fixture IDs.
Available Since: 2026R1
- Parameters:
- request: GetICTFixturesPropertiesRequest
Contains all the information needed to return the properties for one or more ICT fixtures.
- Returns:
- :
SherlockCommonService_pb2.GetICTFixturesPropertiesResponse
Properties for each ICT fixture that correspond to the reference designators.
- Return type:
GetICTFixturesPropertiesResponse
Examples
>>> from ansys.sherlock.core.launcher import launch_sherlock >>> from ansys.sherlock.core.types.layer_types import GetICTFixturesPropertiesRequest >>> sherlock = launch_sherlock() >>> request = layer_types.GetICTFixturesPropertiesRequest( >>> project = "Tutorial Project" >>> cca_name = "Main Board" >>> ict_fixtures_ids = "F1,F2" >>> ) >>> response = layer.get_ict_fixtures_props(request)