v1.0.0-rc.34

This commit is contained in:
2025-04-14 11:52:06 +02:00
parent 708b5fbc4b
commit b0607ab3ca
238 changed files with 4590 additions and 1329 deletions

View File

@@ -0,0 +1,30 @@
# RoiAzimList
List of azimuthal ROIs
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**rois** | [**List[RoiAzimuthal]**](RoiAzimuthal.md) | | [optional]
## Example
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)