<?php

namespace Straxus\FarfetchSDK\Model;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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