<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
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
            -&gt;setBillRequestType($billRequestType);
    }
    /**
     * Get BillRequestType value
     * @return BillRequest|null
     */
    public function getBillRequestType()
    {
        return $this-&gt;BillRequestType;
    }
    /**
     * Set BillRequestType value
     * @param BillRequest $billRequestType
     * @return Bills
     */
    public function setBillRequestType(BillRequest $billRequestType = null)
    {
        $this-&gt;BillRequestType = $billRequestType;
        return $this;
    }
}
</pre></body></html>