Files
cunkebao_v3/Server/extend/aliyun-oss-php-sdk-2.4.1/src/OSS/Model/DeleteObjectInfo.php
2025-03-12 12:18:06 +08:00

41 lines
645 B
PHP
Executable File

<?php
namespace OSS\Model;
/**
* Class DeleteObjectInfo
* @package OSS\Model
*/
class DeleteObjectInfo
{
/**
* DeleteObjectInfo constructor.
*
* @param string $key
* @param string $versionId
*/
public function __construct($key, $versionId = '')
{
$this->key = $key;
$this->versionId = $versionId;
}
/**
* @return string
*/
public function getKey()
{
return $this->key;
}
/**
* @return string
*/
public function getVersionId()
{
return $this->versionId;
}
private $key = "";
private $versionId = "";
}