<?php

namespace Easy\EasyStruct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetDataResponse EasyStruct
 * @package Easy
 * @subpackage Structs
 */
class EasyGetDataResponse extends AbstractStructBase
{
    /**
     * The GetDataResult
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $GetDataResult;
    /**
     * Constructor method for GetDataResponse
     * @uses EasyGetDataResponse::setGetDataResult()
     * @param string $getDataResult
     */
    public function __construct($getDataResult = null)
    {
        $this
            ->setGetDataResult($getDataResult);
    }
    /**
     * Get GetDataResult value
     * An additional test has been added (isset) before returning the property value as
     * this property may have been unset before, due to the fact that this property is
     * removable from the request (nillable=true+minOccurs=0)
     * @return string|null
     */
    public function getGetDataResult()
    {
        return isset($this->GetDataResult) ? $this->GetDataResult : null;
    }
    /**
     * Set GetDataResult value
     * This property is removable from request (nillable=true+minOccurs=0), therefore
     * if the value assigned to this property is null, it is removed from this object
     * @param string $getDataResult
     * @return \Easy\EasyStruct\EasyGetDataResponse
     */
    public function setGetDataResult($getDataResult = null)
    {
        // validation for constraint: string
        if (!is_null($getDataResult) && !is_string($getDataResult)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($getDataResult, true), gettype($getDataResult)), __LINE__);
        }
        if (is_null($getDataResult) || (is_array($getDataResult) && empty($getDataResult))) {
            unset($this->GetDataResult);
        } else {
            $this->GetDataResult = $getDataResult;
        }
        return $this;
    }
}
