Files
Jungfraujoch/docs/python_client/docs/GridScanResult.md
2025-06-15 17:46:46 +02:00

1006 B

GridScanResult

Results of a grid scan

Properties

Name Type Description Notes
file_prefix str [optional]
images List[GridScanResultImagesInner]

Example

from jfjoch_client.models.scan_result import GridScanResult

# TODO update the JSON string below
json = "{}"
# create an instance of GridScanResult from a JSON string
grid_scan_result_instance = GridScanResult.from_json(json)
# print the JSON string representation of the object
print(GridScanResult.to_json())

# convert the object into a dict
grid_scan_result_dict = grid_scan_result_instance.to_dict()
# create an instance of GridScanResult from a dict
grid_scan_result_from_dict = GridScanResult.from_dict(grid_scan_result_dict)

[Back to Model list] [Back to API list] [Back to README]