Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

InitUploadByFileRequest

Request to initialize direct file upload

Properties

Name Type Description Notes
project_id int ID Project
name str File name
size int File size in bytes

Example

from postmypost_rest_sdk.models.init_upload_by_file_request import InitUploadByFileRequest

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

# convert the object into a dict
init_upload_by_file_request_dict = init_upload_by_file_request_instance.to_dict()
# create an instance of InitUploadByFileRequest from a dict
init_upload_by_file_request_from_dict = InitUploadByFileRequest.from_dict(init_upload_by_file_request_dict)

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