Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

RollbackSnapshotResponse.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

RollbackSnapshotResponse

Properties

Name Type Description Notes
links SelfLinks Links for easy navigation.

Example

from pfruck_contabo.models.rollback_snapshot_response import RollbackSnapshotResponse

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

# convert the object into a dict
rollback_snapshot_response_dict = rollback_snapshot_response_instance.to_dict()
# create an instance of RollbackSnapshotResponse from a dict
rollback_snapshot_response_from_dict = RollbackSnapshotResponse.from_dict(rollback_snapshot_response_dict)

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