Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

ImplementationResult

Properties

Name Type Description Notes
success bool Whether implementation succeeded
implementation_id str Implementation identifier [optional]
pages_affected int Number of links/pages modified in this operation [optional]
error str Error message if failed [optional]

Example

from rankvectors.models.implementation_result import ImplementationResult

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

# convert the object into a dict
implementation_result_dict = implementation_result_instance.to_dict()
# create an instance of ImplementationResult from a dict
implementation_result_from_dict = ImplementationResult.from_dict(implementation_result_dict)

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