Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

PagedModelCompound

Properties

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

Example

from PySirius.models.paged_model_compound import PagedModelCompound

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

# convert the object into a dict
paged_model_compound_dict = paged_model_compound_instance.to_dict()
# create an instance of PagedModelCompound from a dict
paged_model_compound_from_dict = PagedModelCompound.from_dict(paged_model_compound_dict)

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