Request to initialize direct file upload
| Name | Type | Description | Notes |
|---|---|---|---|
| project_id | int | ID Project | |
| name | str | File name | |
| size | int | File size in bytes |
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)