Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.03 KB

File metadata and controls

30 lines (22 loc) · 1.03 KB

ImageUrlIn

Properties

Name Type Description Notes
type URLType [optional]
filename object Имя файла для загрузки в облачное хранилище. [optional]
auth ImageUrlAuth [optional]

Example

from timeweb_cloud_api.models.image_url_in import ImageUrlIn

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

# convert the object into a dict
image_url_in_dict = image_url_in_instance.to_dict()
# create an instance of ImageUrlIn from a dict
image_url_in_form_dict = image_url_in.from_dict(image_url_in_dict)

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