31 lines
1.2 KiB
Markdown
31 lines
1.2 KiB
Markdown
# 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**](FileWriterFormat.md) | | [optional] [default to FileWriterFormat.NXMXLEGACY]
|
|
|
|
## Example
|
|
|
|
```python
|
|
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|