Name | Type | Description | Notes |
---|---|---|---|
data | List[InstanceStartActionResponseData] | ||
links | SelfLinks |
from pfruck_contabo.models.instance_start_action_response import InstanceStartActionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of InstanceStartActionResponse from a JSON string
instance_start_action_response_instance = InstanceStartActionResponse.from_json(json)
# print the JSON string representation of the object
print(InstanceStartActionResponse.to_json())
# convert the object into a dict
instance_start_action_response_dict = instance_start_action_response_instance.to_dict()
# create an instance of InstanceStartActionResponse from a dict
instance_start_action_response_from_dict = InstanceStartActionResponse.from_dict(instance_start_action_response_dict)