<?php

namespace Sabre\OTAAirPrice\Structs;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for WeightLimit Structs
 * @subpackage Structs
 */
class WeightLimit extends AbstractStructBase
{
    /**
     * The _
     * @var string
     */
    public $_;
    /**
     * The Units
     * Meta informations extracted from the WSDL
     * - use: optional
     * @var string
     */
    public $Units;
    /**
     * Constructor method for WeightLimit
     * @uses WeightLimit::set_()
     * @uses WeightLimit::setUnits()
     * @param string $_
     * @param string $units
     */
    public function __construct($_ = null, $units = null)
    {
        $this
            ->set_($_)
            ->setUnits($units);
    }
    /**
     * Get _ value
     * @return string|null
     */
    public function get_()
    {
        return $this->_;
    }
    /**
     * Set _ value
     * @param string $_
     * @return \Sabre\OTAAirPrice\Structs\WeightLimit
     */
    public function set_($_ = null)
    {
        $this->_ = $_;
        return $this;
    }
    /**
     * Get Units value
     * @return string|null
     */
    public function getUnits()
    {
        return $this->Units;
    }
    /**
     * Set Units value
     * @param string $units
     * @return \Sabre\OTAAirPrice\Structs\WeightLimit
     */
    public function setUnits($units = null)
    {
        $this->Units = $units;
        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\OTAAirPrice\Structs\WeightLimit
     */
    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__;
    }
}
