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

1.4 KiB

ImageBufferStatus

Properties

Name Type Description Notes
min_image_number int Smallest image number available in the buffer
max_image_number int Largest image number available in the buffer
image_numbers List[int] Image numbers currently present in the buffer.
total_slots int Number of slots in the image buffer. This number, compared to number of images in data collection and frame rate will determine "retention" rate of the image buffer.
available_slots int Slots available for the data collection

Example

from jfjoch_client.models.image_buffer_status import ImageBufferStatus

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

# convert the object into a dict
image_buffer_status_dict = image_buffer_status_instance.to_dict()
# create an instance of ImageBufferStatus from a dict
image_buffer_status_from_dict = ImageBufferStatus.from_dict(image_buffer_status_dict)

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