Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

PagedModelAlignedFeature

Properties

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

Example

from PySirius.models.paged_model_aligned_feature import PagedModelAlignedFeature

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

# convert the object into a dict
paged_model_aligned_feature_dict = paged_model_aligned_feature_instance.to_dict()
# create an instance of PagedModelAlignedFeature from a dict
paged_model_aligned_feature_from_dict = PagedModelAlignedFeature.from_dict(paged_model_aligned_feature_dict)

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