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

Commit

Permalink
Merge pull request #25 from Autodesk-Forge/dev
Browse files Browse the repository at this point in the history
Fixed docblocks to prevent things as reported in #10 from happening
  • Loading branch information
JohnOnSoftware authored Jun 6, 2018
2 parents b4f674d + 8e2f8ac commit 9967c99
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 9967c99

Please sign in to comment.