FileWriterSettings

Properties

Name

Type

Description

Notes

overwrite

bool

Inform jfjoch_write to overwrite existing files. Otherwise files would be saved with .h5.{timestamp}.tmp suffix.

[optional] [default to False]

format

FileWriterFormat

[optional] [default to FileWriterFormat.NXMXLEGACY]

Example

from jfjoch_client.models.file_writer_settings import FileWriterSettings

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

# convert the object into a dict
file_writer_settings_dict = file_writer_settings_instance.to_dict()
# create an instance of FileWriterSettings from a dict
file_writer_settings_from_dict = FileWriterSettings.from_dict(file_writer_settings_dict)

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