in src/Models/GetObjectRequest.php [164:207]
public function __construct(
?string $bucket = null,
?string $key = null,
?string $versionId = null,
?string $ifMatch = null,
?string $ifNoneMatch = null,
?string $ifModifiedSince = null,
?string $ifUnmodifiedSince = null,
?string $rangeHeader = null,
?string $rangeBehavior = null,
?string $responseCacheControl = null,
?string $responseContentDisposition = null,
?string $responseContentEncoding = null,
?string $responseContentLanguage = null,
?string $responseContentType = null,
?string $responseExpires = null,
?string $trafficLimit = null,
?string $process = null,
?string $requestPayer = null,
?callable $progressFn = null,
?array $options = null
)
{
$this->bucket = $bucket;
$this->key = $key;
$this->versionId = $versionId;
$this->ifMatch = $ifMatch;
$this->ifNoneMatch = $ifNoneMatch;
$this->ifModifiedSince = $ifModifiedSince;
$this->ifUnmodifiedSince = $ifUnmodifiedSince;
$this->rangeHeader = $rangeHeader;
$this->rangeBehavior = $rangeBehavior;
$this->responseCacheControl = $responseCacheControl;
$this->responseContentDisposition = $responseContentDisposition;
$this->responseContentEncoding = $responseContentEncoding;
$this->responseContentLanguage = $responseContentLanguage;
$this->responseContentType = $responseContentType;
$this->responseExpires = $responseExpires;
$this->trafficLimit = $trafficLimit;
$this->process = $process;
$this->requestPayer = $requestPayer;
$this->progressFn = $progressFn;
parent::__construct($options);
}