<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 information Structure
 * @subpackage Structs
 */
class Information extends AbstractStructBase
{
    /**
     * The contactPerson
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $contactPerson;
    /**
     * The email
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $email;
    /**
     * The location
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $location;
    /**
     * The memo
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $memo;
    /**
     * The phone
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var string
     */
    public $phone;
    /**
     * Constructor method for information
     * @uses Information::setContactPerson()
     * @uses Information::setEmail()
     * @uses Information::setLocation()
     * @uses Information::setMemo()
     * @uses Information::setPhone()
     * @param string $contactPerson
     * @param string $email
     * @param string $location
     * @param string $memo
     * @param string $phone
     */
    public function __construct($contactPerson = null, $email = null, $location = null, $memo = null, $phone = null)
    {
        $this
            -&gt;setContactPerson($contactPerson)
            -&gt;setEmail($email)
            -&gt;setLocation($location)
            -&gt;setMemo($memo)
            -&gt;setPhone($phone);
    }
    /**
     * Get contactPerson value
     * @return string|null
     */
    public function getContactPerson()
    {
        return $this-&gt;contactPerson;
    }
    /**
     * Set contactPerson value
     * @param string $contactPerson
     * @return Information
     */
    public function setContactPerson($contactPerson = null)
    {
        // validation for constraint: string
        if (!is_null($contactPerson) &amp;&amp; !is_string($contactPerson)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($contactPerson, true), gettype($contactPerson)), __LINE__);
        }
        $this-&gt;contactPerson = $contactPerson;
        return $this;
    }
    /**
     * Get email value
     * @return string|null
     */
    public function getEmail()
    {
        return $this-&gt;email;
    }
    /**
     * Set email value
     * @param string $email
     * @return Information
     */
    public function setEmail($email = null)
    {
        // validation for constraint: string
        if (!is_null($email) &amp;&amp; !is_string($email)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($email, true), gettype($email)), __LINE__);
        }
        $this-&gt;email = $email;
        return $this;
    }
    /**
     * Get location value
     * @return string|null
     */
    public function getLocation()
    {
        return $this-&gt;location;
    }
    /**
     * Set location value
     * @param string $location
     * @return Information
     */
    public function setLocation($location = null)
    {
        // validation for constraint: string
        if (!is_null($location) &amp;&amp; !is_string($location)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($location, true), gettype($location)), __LINE__);
        }
        $this-&gt;location = $location;
        return $this;
    }
    /**
     * Get memo value
     * @return string|null
     */
    public function getMemo()
    {
        return $this-&gt;memo;
    }
    /**
     * Set memo value
     * @param string $memo
     * @return Information
     */
    public function setMemo($memo = null)
    {
        // validation for constraint: string
        if (!is_null($memo) &amp;&amp; !is_string($memo)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($memo, true), gettype($memo)), __LINE__);
        }
        $this-&gt;memo = $memo;
        return $this;
    }
    /**
     * Get phone value
     * @return string|null
     */
    public function getPhone()
    {
        return $this-&gt;phone;
    }
    /**
     * Set phone value
     * @param string $phone
     * @return Information
     */
    public function setPhone($phone = null)
    {
        // validation for constraint: string
        if (!is_null($phone) &amp;&amp; !is_string($phone)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($phone, true), gettype($phone)), __LINE__);
        }
        $this-&gt;phone = $phone;
        return $this;
    }
}
</pre></body></html>