<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 book Structure
 * Meta information extracted from the WSDL
 * - type: tns:book
 * @subpackage Structs
 */
class Book extends AbstractStructBase
{
    /**
     * The BookRequestType
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var BookRequest
     */
    public $BookRequestType;
    /**
     * Constructor method for book
     * @uses Book::setBookRequestType()
     * @param BookRequest $bookRequestType
     */
    public function __construct(BookRequest $bookRequestType = null)
    {
        $this
            -&gt;setBookRequestType($bookRequestType);
    }
    /**
     * Get BookRequestType value
     * @return BookRequest|null
     */
    public function getBookRequestType()
    {
        return $this-&gt;BookRequestType;
    }
    /**
     * Set BookRequestType value
     * @param BookRequest $bookRequestType
     * @return Book
     */
    public function setBookRequestType(BookRequest $bookRequestType = null)
    {
        $this-&gt;BookRequestType = $bookRequestType;
        return $this;
    }
}
</pre></body></html>