| Server IP : 54.233.248.239 / Your IP : 172.28.1.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/vendor/pagarme/pagarme-php/lib/Recipient/ |
Upload File : |
<?php
namespace PagarMe\Sdk\Recipient;
class Recipient
{
use \PagarMe\Sdk\Fillable;
/**
* @var string
*/
protected $id;
/**
* @var PagarMe
*/
protected $bankAccount;
/**
* @var bool
*/
protected $transferEnabled;
/**
* @var string
*/
protected $lastTransfer;
/**
* @var string
*/
protected $transferInterval;
/**
* @var int
*/
protected $transferDay;
/**
* @var bool
*/
protected $automaticAnticipationEnabled;
/**
* @var int
*/
protected $anticipatableVolumePercentage;
/**
* @var \DateTime
*/
protected $dateCreated;
/**
* @var string
*/
protected $dateUpdated;
public function __construct($recipientData)
{
$this->fill($recipientData);
}
/**
* @return string
* @codeCoverageIgnore
*/
public function getId()
{
return $this->id;
}
/**
* @return PagarMe\Sdk\BankAccount\BankAccount
* @codeCoverageIgnore
*/
public function getBankAccount()
{
return $this->bankAccount;
}
/**
* @param PagarMe\Sdk\BankAccount\BankAccount
* @return Recipient
* @codeCoverageIgnore
*/
public function setBankAccount($bankAccount)
{
$this->bankAccount = $bankAccount;
return $this;
}
/**
* @return bool
* @codeCoverageIgnore
*/
public function getTransferEnabled()
{
return $this->transferEnabled;
}
/**
* @param bool
* @return Recipient
* @codeCoverageIgnore
*/
public function setTransferEnabled($transferEnabled)
{
$this->transferEnabled = $transferEnabled;
return $this;
}
/**
* @return string
* @codeCoverageIgnore
*/
public function getLastTransfer()
{
return $this->lastTransfer;
}
/**
* @param string
* @return Recipient
* @codeCoverageIgnore
*/
public function setLastTransfer($lastTransfer)
{
$this->lastTransfer = $lastTransfer;
return $this;
}
/**
* @return string
* @codeCoverageIgnore
*/
public function getTransferInterval()
{
return $this->transferInterval;
}
/**
* @param string
* @return Recipient
* @codeCoverageIgnore
*/
public function setTransferInterval($transferInterval)
{
$this->transferInterval = $transferInterval;
return $this;
}
/**
* @return int
* @codeCoverageIgnore
*/
public function getTransferDay()
{
return $this->transferDay;
}
/**
* @param int
* @return Recipient
* @codeCoverageIgnore
*/
public function setTransferDay($transferDay)
{
$this->transferDay = $transferDay;
return $this;
}
/**
* @return bool
* @codeCoverageIgnore
*/
public function getAutomaticAnticipationEnabled()
{
return $this->automaticAnticipationEnabled;
}
/**
* @param bool
* @return Recipient
* @codeCoverageIgnore
*/
public function setAutomaticAnticipationEnabled($automaticAnticipationEnabled)
{
$this->automaticAnticipationEnabled = $automaticAnticipationEnabled;
return $this;
}
/**
* @return int
* @codeCoverageIgnore
*/
public function getAnticipatableVolumePercentage()
{
return $this->anticipatableVolumePercentage;
}
/**
* @param int
* @return Recipient
* @codeCoverageIgnore
*/
public function setAnticipatableVolumePercentage($anticipatableVolumePercentage)
{
$this->anticipatableVolumePercentage = $anticipatableVolumePercentage;
return $this;
}
/**
* @return \DateTime
* @codeCoverageIgnore
*/
public function getDateCreated()
{
return $this->dateCreated;
}
/**
* @return \DateTime
* @codeCoverageIgnore
*/
public function getDateUpdated()
{
return $this->dateUpdated;
}
}