<?php

namespace Straxus\FarfetchSDK\Model;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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