Files
Jungfraujoch/docs/python_client/docs/RoiAzimList.md
2025-04-14 11:52:06 +02:00

912 B

RoiAzimList

List of azimuthal ROIs

Properties

Name Type Description Notes
rois List[RoiAzimuthal] [optional]

Example

from jfjoch_client.models.roi_azim_list import RoiAzimList

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

# convert the object into a dict
roi_azim_list_dict = roi_azim_list_instance.to_dict()
# create an instance of RoiAzimList from a dict
roi_azim_list_from_dict = RoiAzimList.from_dict(roi_azim_list_dict)

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