Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 956 Bytes

CreateUrlRequest.md

File metadata and controls

30 lines (21 loc) · 956 Bytes

CreateUrlRequest

Properties

Name Type Description Notes
filename str
extension str

Example

from platform_api_python_client.models.create_url_request import CreateUrlRequest

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

# convert the object into a dict
create_url_request_dict = create_url_request_instance.to_dict()
# create an instance of CreateUrlRequest from a dict
create_url_request_from_dict = CreateUrlRequest.from_dict(create_url_request_dict)

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