Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 895 Bytes

File metadata and controls

31 lines (22 loc) · 895 Bytes

ImageInfo

Properties

Name Type Description Notes
title str
allowed_file_extensions str
description str [optional]

Example

from boldsign.models.image_info import ImageInfo

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

# convert the object into a dict
image_info_dict = image_info_instance.to_dict()
# create an instance of ImageInfo from a dict
image_info_from_dict = ImageInfo.from_dict(image_info_dict)

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