Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Fixed docblocks to prevent things as reported in #10 from happening #20

Merged
merged 1 commit into from
Jun 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/Api/ObjectsApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ public function uploadChunk($bucket_key, $object_name, $content_length, $content
* @param int $content_length Indicates the size of the request body. (required)
* @param string $content_range Byte range of a segment being uploaded (required)
* @param string $session_id Unique identifier of a session of a file being uploaded (required)
* @param \SplFileObject $body (required)
* @param string $body Chunk content(required)
* @param string $content_disposition The suggested default filename when downloading this object to a file after it has been uploaded. (optional)
* @param string $if_match If-Match header containing a SHA-1 hash of the bytes in the request body can be sent by the calling service or client application with the request. If present, OSS will use the value of If-Match header to verify that a SHA-1 calculated for the uploaded bytes server side matches what was sent in the header. If not, the request is failed with a status 412 Precondition Failed and the data is not written. (optional)
* @throws \Autodesk\Forge\Client\ApiException on non-2xx response
Expand Down Expand Up @@ -1268,7 +1268,7 @@ public function uploadChunkWithHttpInfo($bucket_key, $object_name, $content_leng
* @param string $bucket_key URL-encoded bucket key (required)
* @param string $object_name URL-encoded object name (required)
* @param int $content_length Indicates the size of the request body. (required)
* @param \SplFileObject $body (required)
* @param string $body File content (required)
* @param string $content_disposition The suggested default filename when downloading this object to a file after it has been uploaded. (optional)
* @param string $if_match If-Match header containing a SHA-1 hash of the bytes in the request body can be sent by the calling service or client application with the request. If present, OSS will use the value of If-Match header to verify that a SHA-1 calculated for the uploaded bytes server side matches what was sent in the header. If not, the request is failed with a status 412 Precondition Failed and the data is not written. (optional)
* @throws \Autodesk\Forge\Client\ApiException on non-2xx response
Expand All @@ -1288,7 +1288,7 @@ public function uploadObject($bucket_key, $object_name, $content_length, $body,
* @param string $bucket_key URL-encoded bucket key (required)
* @param string $object_name URL-encoded object name (required)
* @param int $content_length Indicates the size of the request body. (required)
* @param \SplFileObject $body (required)
* @param string $body File content (required)
* @param string $content_disposition The suggested default filename when downloading this object to a file after it has been uploaded. (optional)
* @param string $if_match If-Match header containing a SHA-1 hash of the bytes in the request body can be sent by the calling service or client application with the request. If present, OSS will use the value of If-Match header to verify that a SHA-1 calculated for the uploaded bytes server side matches what was sent in the header. If not, the request is failed with a status 412 Precondition Failed and the data is not written. (optional)
* @throws \Autodesk\Forge\Client\ApiException on non-2xx response
Expand Down