<?php

namespace Straxus\FarfetchSDK\Model;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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