first commit

This commit is contained in:
2024-04-01 09:54:43 +08:00
commit 899d816bc3
795 changed files with 130040 additions and 0 deletions

View File

@@ -0,0 +1,80 @@
<?php
namespace Yeepay\Yop\Sdk\Model;
class YosDownloadResponseMetadata extends YopResponseMetadata
{
/**
* @var float
*/
private $instanceLength = -1;
/**
* @var string
*/
private $cacheControl;
/**
* @var float
*/
private $appendOffset;
/**
* @return float
*/
public function getInstanceLength()
{
return $this->instanceLength;
}
/**
* @param float $instanceLength
* @return YosDownloadResponseMetadata
*/
public function setInstanceLength($instanceLength)
{
$this->instanceLength = $instanceLength;
return $this;
}
/**
* @return string
*/
public function getCacheControl()
{
return $this->cacheControl;
}
/**
* @param string $cacheControl
* @return YosDownloadResponseMetadata
*/
public function setCacheControl($cacheControl)
{
$this->cacheControl = $cacheControl;
return $this;
}
/**
* @return float
*/
public function getAppendOffset()
{
return $this->appendOffset;
}
/**
* @param float $appendOffset
* @return YosDownloadResponseMetadata
*/
public function setAppendOffset($appendOffset)
{
$this->appendOffset = $appendOffset;
return $this;
}
}