* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class QualifyRequest { /** * @var QualificationRequestType */ private $requestType; /** * QualifyRequest constructor. * * @param QualificationRequestType $requestType */ public function __construct(QualificationRequestType $requestType) { $this->requestType = $requestType; } /** * @return string */ public function getRequestBody() { return json_encode($this->requestType); } }