| Name |
Type |
Description |
Notes |
| url |
str |
|
[optional] [readonly] |
from okta.models.image_upload_response import ImageUploadResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ImageUploadResponse from a JSON string
image_upload_response_instance = ImageUploadResponse.from_json(json)
# print the JSON string representation of the object
print(ImageUploadResponse.to_json())
# convert the object into a dict
image_upload_response_dict = image_upload_response_instance.to_dict()
# create an instance of ImageUploadResponse from a dict
image_upload_response_from_dict = ImageUploadResponse.from_dict(image_upload_response_dict)
[Back to Model list] [Back to API list] [Back to README]