for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This class represents List Payment Options Result Entity
*
* PHP version 5.4
* @category MessageEntity
* @package Payever\Payments
* @author payever GmbH <[email protected]>
* @copyright 2017-2019 payever GmbH
* @license MIT <https://opensource.org/licenses/MIT>
* @link https://getpayever.com/shopsystem/
*/
namespace Payever\ExternalIntegration\Payments\Http\MessageEntity;
* @method bool getAcceptFee()
class ListPaymentOptionsResultEntity extends AbstractPaymentOptionEntity
{
/** @var bool $acceptFee */
protected $acceptFee;
* Sets Accept Fee
* @param bool $acceptFee
public function setAcceptFee($acceptFee)
$this->acceptFee = filter_var($acceptFee, FILTER_VALIDATE_BOOLEAN);
}