31 lines
1.4 KiB
Markdown
31 lines
1.4 KiB
Markdown
# DatasetSettingsXrayFluorescenceSpectrum
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**energy_e_v** | **List[float]** | X-ray fluorescence scan energy for each measurement point |
|
|
**data** | **List[float]** | X-ray fluorescence scan result in arbitrary units; must be exactly the same length, as energy_eV |
|
|
|
|
## Example
|
|
|
|
```python
|
|
from jfjoch_client.models.dataset_settings_xray_fluorescence_spectrum import DatasetSettingsXrayFluorescenceSpectrum
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of DatasetSettingsXrayFluorescenceSpectrum from a JSON string
|
|
dataset_settings_xray_fluorescence_spectrum_instance = DatasetSettingsXrayFluorescenceSpectrum.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(DatasetSettingsXrayFluorescenceSpectrum.to_json())
|
|
|
|
# convert the object into a dict
|
|
dataset_settings_xray_fluorescence_spectrum_dict = dataset_settings_xray_fluorescence_spectrum_instance.to_dict()
|
|
# create an instance of DatasetSettingsXrayFluorescenceSpectrum from a dict
|
|
dataset_settings_xray_fluorescence_spectrum_from_dict = DatasetSettingsXrayFluorescenceSpectrum.from_dict(dataset_settings_xray_fluorescence_spectrum_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)
|
|
|
|
|