| 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 |
|
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]