<?php

namespace Straxus\FarfetchSDK\Model;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetWebsiteDescriptionResponse Model
 * @subpackage Structs
 */
class GetWebsiteDescriptionResponse extends AbstractStructBase
{
    /**
     * The GetWebsiteDescriptionResult
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $GetWebsiteDescriptionResult;
    /**
     * Constructor method for GetWebsiteDescriptionResponse
     * @uses GetWebsiteDescriptionResponse::setGetWebsiteDescriptionResult()
     * @param string $getWebsiteDescriptionResult
     */
    public function __construct($getWebsiteDescriptionResult = null)
    {
        $this
            ->setGetWebsiteDescriptionResult($getWebsiteDescriptionResult);
    }
    /**
     * Get GetWebsiteDescriptionResult value
     * @return string|null
     */
    public function getGetWebsiteDescriptionResult()
    {
        return $this->GetWebsiteDescriptionResult;
    }
    /**
     * Set GetWebsiteDescriptionResult value
     * @param string $getWebsiteDescriptionResult
     * @return \Straxus\FarfetchSDK\Model\GetWebsiteDescriptionResponse
     */
    public function setGetWebsiteDescriptionResult($getWebsiteDescriptionResult = null)
    {
        // validation for constraint: string
        if (!is_null($getWebsiteDescriptionResult) && !is_string($getWebsiteDescriptionResult)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($getWebsiteDescriptionResult, true), gettype($getWebsiteDescriptionResult)), __LINE__);
        }
        $this->GetWebsiteDescriptionResult = $getWebsiteDescriptionResult;
        return $this;
    }
    /**
     * Method called when an object has been exported with var_export() functions
     * It allows to return an object instantiated with the values
     * @see AbstractStructBase::__set_state()
     * @uses AbstractStructBase::__set_state()
     * @param array $array the exported values
     * @return \Straxus\FarfetchSDK\Model\GetWebsiteDescriptionResponse
     */
    public static function __set_state(array $array)
    {
        return parent::__set_state($array);
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
