DetectorListElement¶
Properties¶
Name | Type | Description | Notes |
|---|---|---|---|
id | int | ||
description | str | ||
serial_number | str | ||
base_ipv4_addr | str | ||
udp_interface_count | int | Number of UDP interfaces per detector module | |
nmodules | int | ||
width | int | ||
height | int | ||
pixel_size_mm | float | [optional] | |
readout_time_ns | int | ||
min_frame_time_ns | int | ||
min_count_time_ns | int | ||
type | [optional] |
Example¶
from jfjoch_client.models.detector_list_element import DetectorListElement
# TODO update the JSON string below
json = "{}"
# create an instance of DetectorListElement from a JSON string
detector_list_element_instance = DetectorListElement.from_json(json)
# print the JSON string representation of the object
print(DetectorListElement.to_json())
# convert the object into a dict
detector_list_element_dict = detector_list_element_instance.to_dict()
# create an instance of DetectorListElement from a dict
detector_list_element_from_dict = DetectorListElement.from_dict(detector_list_element_dict)