# ScanResult

Results of a scan

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**file_prefix** | **str** |  | [optional] 
**rotation_unit_cell** | [**UnitCell**](UnitCell.md) |  | [optional] 
**rotation_crystal_lattice** | **List[float]** | Real-space crystal lattice 3D vectors in Angstrom. Order is 1st vector (x,y,z), 2nd vector (x,y,z) and 3rd vector (x,y,z)  | [optional] 
**rotation_bravais** | **str** | Bravais lattice type of the global rotation-indexing solution: crystal-system letter + centering, e.g. \&quot;tP\&quot;, \&quot;oC\&quot;, \&quot;cF\&quot;, \&quot;hR\&quot;, \&quot;mP\&quot;. Empty if not determined.  | [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)


