Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

File metadata and controls

30 lines (21 loc) · 1.2 KB

PagedModelSpectralLibraryMatch

Properties

Name Type Description Notes
content List[SpectralLibraryMatch] [optional]
page PageMetadata [optional]

Example

from PySirius.models.paged_model_spectral_library_match import PagedModelSpectralLibraryMatch

# TODO update the JSON string below
json = "{}"
# create an instance of PagedModelSpectralLibraryMatch from a JSON string
paged_model_spectral_library_match_instance = PagedModelSpectralLibraryMatch.from_json(json)
# print the JSON string representation of the object
print(PagedModelSpectralLibraryMatch.to_json())

# convert the object into a dict
paged_model_spectral_library_match_dict = paged_model_spectral_library_match_instance.to_dict()
# create an instance of PagedModelSpectralLibraryMatch from a dict
paged_model_spectral_library_match_from_dict = PagedModelSpectralLibraryMatch.from_dict(paged_model_spectral_library_match_dict)

[Back to Model list] [Back to API list] [Back to README]