![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/gositeme.com/public_html/whmcs/vendor/bitpay/php-client/src/Bitpay/ |
<?php
/**
* @license Copyright 2011-2015 BitPay Inc., MIT License
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
*/
namespace Bitpay;
/**
*
* @package Bitpay
*/
class Bill implements BillInterface
{
/**
* @var array
*/
protected $items;
/**
* @var Currency
*/
protected $currency;
/**
* @var string
*/
protected $name;
/**
* @var array
*/
protected $address;
/**
* @var string
*/
protected $city;
/**
* @var string
*/
protected $state;
/**
* @var string
*/
protected $zip;
/**
* @var string
*/
protected $country;
/**
* @var string
*/
protected $email;
/**
* @var string
*/
protected $phone;
/**
* @var string
*/
protected $status;
/**
* @var string
*/
protected $showRate;
/**
* @var boolean
*/
protected $archived;
public function __construct()
{
$this->address = array();
$this->archived = false;
$this->currency = new Currency();
$this->items = array();
}
/**
* @inheritdoc
*/
public function getItems()
{
return $this->items;
}
/**
* @param Item $item
* @return Bill
*/
public function addItem(Item $item)
{
if (!empty($item)) {
$this->items[] = $item;
}
return $this;
}
/**
* @inheritdoc
*/
public function getCurrency()
{
return $this->currency;
}
/**
* @param Currency $currency
* @return Bill
*/
public function setCurrency(Currency $currency)
{
if (!empty($currency)) {
$this->currency = $currency;
}
return $this;
}
/**
* @inheritdoc
*/
public function getName()
{
return $this->name;
}
/**
* @param string $name
* @return Bill
*/
public function setName($name)
{
if (!empty($name) && ctype_print($name)) {
$this->name = trim($name);
}
return $this;
}
/**
* @inheritdoc
*/
public function getAddress()
{
return $this->address;
}
/**
* @param array $address
* @return Bill
*/
public function setAddress($address)
{
if (!empty($address) && is_array($address)) {
$this->address = $address;
}
return $this;
}
/**
* @inheritdoc
*/
public function getCity()
{
return $this->city;
}
/**
* @param string $city
* @return Bill
*/
public function setCity($city)
{
if (!empty($city) && ctype_print($city)) {
$this->city = trim($city);
}
return $this;
}
/**
* @inheritdoc
*/
public function getState()
{
return $this->state;
}
/**
* @param string $state
* @return Bill
*/
public function setState($state)
{
if (!empty($state) && ctype_print($state)) {
$this->state = trim($state);
}
return $this;
}
/**
* @inheritdoc
*/
public function getZip()
{
return $this->zip;
}
/**
* @param string $zip
* @return Bill
*/
public function setZip($zip)
{
if (!empty($zip) && ctype_print($zip)) {
$this->zip = trim($zip);
}
return $this;
}
/**
* @inheritdoc
*/
public function getCountry()
{
return $this->country;
}
/**
* @param string $country
* @return Bill
*/
public function setCountry($country)
{
if (!empty($country) && ctype_print($country)) {
$this->country = trim($country);
}
return $this;
}
/**
* @inheritdoc
*/
public function getEmail()
{
return $this->email;
}
/**
* @param string $email
* @return Bill
*/
public function setEmail($email)
{
if (!empty($email) && ctype_print($email)) {
$this->email = trim($email);
}
return $this;
}
/**
* @inheritdoc
*/
public function getPhone()
{
return $this->phone;
}
/**
* @param string $phone
* @return Bill
*/
public function setPhone($phone)
{
if (!empty($phone) && ctype_print($phone)) {
$this->phone = trim($phone);
}
return $this;
}
/**
* @inheritdoc
*/
public function getStatus()
{
return $this->status;
}
/**
* @param string $status
* @return Bill
*/
public function setStatus($status)
{
if (!empty($status) && ctype_print($status)) {
$this->status = trim($status);
}
return $this;
}
/**
* @inheritdoc
*/
public function getShowRate()
{
return $this->showRate;
}
/**
* @param string $showRate
* @return Bill
*/
public function setShowRate($showRate)
{
if (!empty($showRate) && ctype_print($showRate)) {
$this->showRate = trim($showRate);
}
return $this;
}
/**
* @inheritdoc
*/
public function getArchived()
{
return $this->archived;
}
/**
* @param boolean $archived
* @return Bill
*/
public function setArchived($archived)
{
$this->archived = (boolean) $archived;
return $this;
}
}