Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

CreateCustomImageResponse.md

File metadata and controls

30 lines (21 loc) · 1.12 KB

CreateCustomImageResponse

Properties

Name Type Description Notes
data List[CreateCustomImageResponseData]
links SelfLinks

Example

from pfruck_contabo.models.create_custom_image_response import CreateCustomImageResponse

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

# convert the object into a dict
create_custom_image_response_dict = create_custom_image_response_instance.to_dict()
# create an instance of CreateCustomImageResponse from a dict
create_custom_image_response_from_dict = CreateCustomImageResponse.from_dict(create_custom_image_response_dict)

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