Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.2 KB

File metadata and controls

33 lines (24 loc) · 1.2 KB

CreateUploadRequest

Begin a resumable upload.

Properties

Name Type Description Notes
parent_path_id UUID Parent folder path part ID (FOLDER)
name str Document name
filename str Original filename; its extension selects the type + size cap
size_bytes int Declared total size; fast-rejected against the type cap

Example

from ksapi.models.create_upload_request import CreateUploadRequest

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

# convert the object into a dict
create_upload_request_dict = create_upload_request_instance.to_dict()
# create an instance of CreateUploadRequest from a dict
create_upload_request_from_dict = CreateUploadRequest.from_dict(create_upload_request_dict)

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