<?php

namespace Straxus\FarfetchSDK\Model;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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