Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

File metadata and controls

32 lines (23 loc) · 1.25 KB

VPSV1SnapshotSnapshotResource

Properties

Name Type Description Notes
id int Snapshot ID [optional]
restore_time int Estimated snapshot restore time in seconds [optional]
created_at datetime [optional]
expires_at datetime [optional]

Example

from hostinger_api.models.vpsv1_snapshot_snapshot_resource import VPSV1SnapshotSnapshotResource

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

# convert the object into a dict
vpsv1_snapshot_snapshot_resource_dict = vpsv1_snapshot_snapshot_resource_instance.to_dict()
# create an instance of VPSV1SnapshotSnapshotResource from a dict
vpsv1_snapshot_snapshot_resource_from_dict = VPSV1SnapshotSnapshotResource.from_dict(vpsv1_snapshot_snapshot_resource_dict)

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