<?php

namespace Straxus\FarfetchSDK\Model;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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