Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 934 Bytes

File metadata and controls

29 lines (20 loc) · 934 Bytes

CreateUrlResponse

Properties

Name Type Description Notes
url str

Example

from platform_api_python_client.models.create_url_response import CreateUrlResponse

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

# convert the object into a dict
create_url_response_dict = create_url_response_instance.to_dict()
# create an instance of CreateUrlResponse from a dict
create_url_response_from_dict = CreateUrlResponse.from_dict(create_url_response_dict)

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