Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

UploadPresignResponse.md

File metadata and controls

32 lines (23 loc) · 1.04 KB

UploadPresignResponse

Properties

Name Type Description Notes
fields object
headers object
url str
method str [optional]

Example

from docspring.models.upload_presign_response import UploadPresignResponse

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

# convert the object into a dict
upload_presign_response_dict = upload_presign_response_instance.to_dict()
# create an instance of UploadPresignResponse from a dict
upload_presign_response_from_dict = UploadPresignResponse.from_dict(upload_presign_response_dict)

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