Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

ImplementationSummary

Properties

Name Type Description Notes
total int Total number of implementations
succeeded int Number of successful implementations
failed int Number of failed implementations
pages_affected int Total links/pages affected

Example

from rankvectors.models.implementation_summary import ImplementationSummary

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

# convert the object into a dict
implementation_summary_dict = implementation_summary_instance.to_dict()
# create an instance of ImplementationSummary from a dict
implementation_summary_from_dict = ImplementationSummary.from_dict(implementation_summary_dict)

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