<?php

namespace Straxus\FarfetchSDK\Model;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetDesignerIdsForSeasonBrandResponse Model
 * @subpackage Structs
 */
class GetDesignerIdsForSeasonBrandResponse extends AbstractStructBase
{
    /**
     * The GetDesignerIdsForSeasonBrandResult
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var \Straxus\FarfetchSDK\Array\ArrayOfString
     */
    public $GetDesignerIdsForSeasonBrandResult;
    /**
     * Constructor method for GetDesignerIdsForSeasonBrandResponse
     * @uses GetDesignerIdsForSeasonBrandResponse::setGetDesignerIdsForSeasonBrandResult()
     * @param \Straxus\FarfetchSDK\Array\ArrayOfString $getDesignerIdsForSeasonBrandResult
     */
    public function __construct(\Straxus\FarfetchSDK\Array\ArrayOfString $getDesignerIdsForSeasonBrandResult = null)
    {
        $this
            ->setGetDesignerIdsForSeasonBrandResult($getDesignerIdsForSeasonBrandResult);
    }
    /**
     * Get GetDesignerIdsForSeasonBrandResult value
     * @return \Straxus\FarfetchSDK\Array\ArrayOfString|null
     */
    public function getGetDesignerIdsForSeasonBrandResult()
    {
        return $this->GetDesignerIdsForSeasonBrandResult;
    }
    /**
     * Set GetDesignerIdsForSeasonBrandResult value
     * @param \Straxus\FarfetchSDK\Array\ArrayOfString $getDesignerIdsForSeasonBrandResult
     * @return \Straxus\FarfetchSDK\Model\GetDesignerIdsForSeasonBrandResponse
     */
    public function setGetDesignerIdsForSeasonBrandResult(\Straxus\FarfetchSDK\Array\ArrayOfString $getDesignerIdsForSeasonBrandResult = null)
    {
        $this->GetDesignerIdsForSeasonBrandResult = $getDesignerIdsForSeasonBrandResult;
        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\GetDesignerIdsForSeasonBrandResponse
     */
    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__;
    }
}
