<?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
            ->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;
    }
}
