v1.0.0-rc.44
This commit is contained in:
35
docs/python_client/docs/UnitCell.md
Normal file
35
docs/python_client/docs/UnitCell.md
Normal file
@@ -0,0 +1,35 @@
|
||||
# UnitCell
|
||||
|
||||
Unit cell parameters. Necessary to run indexing. Units of angstrom and degree
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**a** | **float** | |
|
||||
**b** | **float** | |
|
||||
**c** | **float** | |
|
||||
**alpha** | **float** | |
|
||||
**beta** | **float** | |
|
||||
**gamma** | **float** | |
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from jfjoch_client.models.unit_cell import UnitCell
|
||||
|
||||
# TODO update the JSON string below
|
||||
json = "{}"
|
||||
# create an instance of UnitCell from a JSON string
|
||||
unit_cell_instance = UnitCell.from_json(json)
|
||||
# print the JSON string representation of the object
|
||||
print(UnitCell.to_json())
|
||||
|
||||
# convert the object into a dict
|
||||
unit_cell_dict = unit_cell_instance.to_dict()
|
||||
# create an instance of UnitCell from a dict
|
||||
unit_cell_from_dict = UnitCell.from_dict(unit_cell_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