Name | Type | Description | Notes |
---|---|---|---|
data | List[PatchInstanceResponseData] | ||
links | SelfLinks |
from pfruck_contabo.models.patch_instance_response import PatchInstanceResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PatchInstanceResponse from a JSON string
patch_instance_response_instance = PatchInstanceResponse.from_json(json)
# print the JSON string representation of the object
print(PatchInstanceResponse.to_json())
# convert the object into a dict
patch_instance_response_dict = patch_instance_response_instance.to_dict()
# create an instance of PatchInstanceResponse from a dict
patch_instance_response_from_dict = PatchInstanceResponse.from_dict(patch_instance_response_dict)