for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Zed\Payone\Business\Api\Request\Container;
use SprykerEco\Shared\Payone\PayoneApiConstants;
class GetFileContainer extends AbstractRequestContainer
{
* @var string
protected $request = PayoneApiConstants::REQUEST_TYPE_GETFILE;
protected $file_reference;
protected $file_type;
protected $file_format;
* @return string
public function getFileReference()
return $this->file_reference;
}
* @param string $file_reference
*
* @return void
public function setFileReference($file_reference)
$this->file_reference = $file_reference;
public function getFileType()
return $this->file_type;
* @param string $file_type
public function setFileType($file_type)
$this->file_type = $file_type;
public function getFileFormat()
return $this->file_format;
* @param string $file_format
public function setFileFormat($file_format)
$this->file_format = $file_format;