<?php

namespace Sabre\OTAAirRules\Structs;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for TravelDateOptions Structs
 * @subpackage Structs
 */
class TravelDateOptions extends AbstractStructBase
{
    /**
     * The Historical
     * @var \Sabre\OTAAirRules\Structs\Historical
     */
    public $Historical;
    /**
     * Constructor method for TravelDateOptions
     * @uses TravelDateOptions::setHistorical()
     * @param \Sabre\OTAAirRules\Structs\Historical $historical
     */
    public function __construct(\Sabre\OTAAirRules\Structs\Historical $historical = null)
    {
        $this
            ->setHistorical($historical);
    }
    /**
     * Get Historical value
     * @return \Sabre\OTAAirRules\Structs\Historical|null
     */
    public function getHistorical()
    {
        return $this->Historical;
    }
    /**
     * Set Historical value
     * @param \Sabre\OTAAirRules\Structs\Historical $historical
     * @return \Sabre\OTAAirRules\Structs\TravelDateOptions
     */
    public function setHistorical(\Sabre\OTAAirRules\Structs\Historical $historical = null)
    {
        $this->Historical = $historical;
        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 \Sabre\OTAAirRules\Structs\TravelDateOptions
     */
    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__;
    }
}
