Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

CustomImagesStatsResponse.md

File metadata and controls

30 lines (21 loc) · 1.12 KB

CustomImagesStatsResponse

Properties

Name Type Description Notes
data List[CustomImagesStatsResponseData]
links SelfLinks

Example

from pfruck_contabo.models.custom_images_stats_response import CustomImagesStatsResponse

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

# convert the object into a dict
custom_images_stats_response_dict = custom_images_stats_response_instance.to_dict()
# create an instance of CustomImagesStatsResponse from a dict
custom_images_stats_response_from_dict = CustomImagesStatsResponse.from_dict(custom_images_stats_response_dict)

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