<?php

namespace Straxus\FarfetchSDK\Model;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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