v1.0.0-rc.44
This commit is contained in:
31
docs/python_client/docs/ScanResult.md
Normal file
31
docs/python_client/docs/ScanResult.md
Normal file
@@ -0,0 +1,31 @@
|
||||
# ScanResult
|
||||
|
||||
Results of a grid scan
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**file_prefix** | **str** | | [optional]
|
||||
**images** | [**List[ScanResultImagesInner]**](ScanResultImagesInner.md) | |
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from jfjoch_client.models.scan_result import ScanResult
|
||||
|
||||
# TODO update the JSON string below
|
||||
json = "{}"
|
||||
# create an instance of ScanResult from a JSON string
|
||||
scan_result_instance = ScanResult.from_json(json)
|
||||
# print the JSON string representation of the object
|
||||
print(ScanResult.to_json())
|
||||
|
||||
# convert the object into a dict
|
||||
scan_result_dict = scan_result_instance.to_dict()
|
||||
# create an instance of ScanResult from a dict
|
||||
scan_result_from_dict = ScanResult.from_dict(scan_result_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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user