Files
Jungfraujoch/docs/python_client/docs/RoiDefinitions.md
2025-05-05 19:32:22 +02:00

1023 B

RoiDefinitions

ROI defintions

Properties

Name Type Description Notes
box RoiBoxList
circle RoiCircleList
azim RoiAzimList

Example

from jfjoch_client.models.roi_definitions import RoiDefinitions

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

# convert the object into a dict
roi_definitions_dict = roi_definitions_instance.to_dict()
# create an instance of RoiDefinitions from a dict
roi_definitions_from_dict = RoiDefinitions.from_dict(roi_definitions_dict)

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