Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 895 Bytes

RevertBody.md

File metadata and controls

29 lines (21 loc) · 895 Bytes

RevertBody

Properties

Name Type Description Notes
major_version bool [optional]
comment str [optional]

Example

from alfresco_core_api_client.models.revert_body import RevertBody

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

# convert the object into a dict
revert_body_dict = revert_body_instance.to_dict()
# create an instance of RevertBody from a dict
revert_body_form_dict = revert_body.from_dict(revert_body_dict)

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