xxxxxxxxxx
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
->setBookRequestType($bookRequestType);
}
/**
* Get BookRequestType value
* @return BookRequest|null
*/
public function getBookRequestType()
{
return $this->BookRequestType;
}
/**
* Set BookRequestType value
* @param BookRequest $bookRequestType
* @return Book
*/
public function setBookRequestType(BookRequest $bookRequestType = null)
{
$this->BookRequestType = $bookRequestType;
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