xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for bills Structure
* Meta information extracted from the WSDL
* - type: tns:bills
* @subpackage Structs
*/
class Bills extends AbstractStructBase
{
/**
* The BillRequestType
* Meta information extracted from the WSDL
* - minOccurs: 0
* @var BillRequest
*/
public $BillRequestType;
/**
* Constructor method for bills
* @uses Bills::setBillRequestType()
* @param BillRequest $billRequestType
*/
public function __construct(BillRequest $billRequestType = null)
{
$this
->setBillRequestType($billRequestType);
}
/**
* Get BillRequestType value
* @return BillRequest|null
*/
public function getBillRequestType()
{
return $this->BillRequestType;
}
/**
* Set BillRequestType value
* @param BillRequest $billRequestType
* @return Bills
*/
public function setBillRequestType(BillRequest $billRequestType = null)
{
$this->BillRequestType = $billRequestType;
return $this;
}
}
Don't be shy, don't hesitate to contact us for any subject, we'll be glad to help.
This platform is provided to give developpers and non developpers a way to easily consume SOAP Web Services or share their own SOAP Web Services with extra features powered by the platform.
© 2025 Providr.IO