<?php

namespace Straxus\FarfetchSDK\Model;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetPropValueIdByNameResponse Model
 * @subpackage Structs
 */
class GetPropValueIdByNameResponse extends AbstractStructBase
{
    /**
     * The GetPropValueIdByNameResult
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var int
     */
    public $GetPropValueIdByNameResult;
    /**
     * Constructor method for GetPropValueIdByNameResponse
     * @uses GetPropValueIdByNameResponse::setGetPropValueIdByNameResult()
     * @param int $getPropValueIdByNameResult
     */
    public function __construct($getPropValueIdByNameResult = null)
    {
        $this
            ->setGetPropValueIdByNameResult($getPropValueIdByNameResult);
    }
    /**
     * Get GetPropValueIdByNameResult value
     * @return int
     */
    public function getGetPropValueIdByNameResult()
    {
        return $this->GetPropValueIdByNameResult;
    }
    /**
     * Set GetPropValueIdByNameResult value
     * @param int $getPropValueIdByNameResult
     * @return \Straxus\FarfetchSDK\Model\GetPropValueIdByNameResponse
     */
    public function setGetPropValueIdByNameResult($getPropValueIdByNameResult = null)
    {
        // validation for constraint: int
        if (!is_null($getPropValueIdByNameResult) && !(is_int($getPropValueIdByNameResult) || ctype_digit($getPropValueIdByNameResult))) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide an integer value, %s given', var_export($getPropValueIdByNameResult, true), gettype($getPropValueIdByNameResult)), __LINE__);
        }
        $this->GetPropValueIdByNameResult = $getPropValueIdByNameResult;
        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\GetPropValueIdByNameResponse
     */
    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__;
    }
}
