<?php

namespace Sabre\OTAAirPrice\Structs;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for ManuallyAdjustedSellingLevel Structs
 * @subpackage Structs
 */
class ManuallyAdjustedSellingLevel extends AbstractStructBase
{
    /**
     * The MarkDown
     * Meta informations extracted from the WSDL
     * - use: optional
     * @var float
     */
    public $MarkDown;
    /**
     * The MarkUp
     * Meta informations extracted from the WSDL
     * - use: optional
     * @var float
     */
    public $MarkUp;
    /**
     * Constructor method for ManuallyAdjustedSellingLevel
     * @uses ManuallyAdjustedSellingLevel::setMarkDown()
     * @uses ManuallyAdjustedSellingLevel::setMarkUp()
     * @param float $markDown
     * @param float $markUp
     */
    public function __construct($markDown = null, $markUp = null)
    {
        $this
            ->setMarkDown($markDown)
            ->setMarkUp($markUp);
    }
    /**
     * Get MarkDown value
     * @return float|null
     */
    public function getMarkDown()
    {
        return $this->MarkDown;
    }
    /**
     * Set MarkDown value
     * @param float $markDown
     * @return \Sabre\OTAAirPrice\Structs\ManuallyAdjustedSellingLevel
     */
    public function setMarkDown($markDown = null)
    {
        $this->MarkDown = $markDown;
        return $this;
    }
    /**
     * Get MarkUp value
     * @return float|null
     */
    public function getMarkUp()
    {
        return $this->MarkUp;
    }
    /**
     * Set MarkUp value
     * @param float $markUp
     * @return \Sabre\OTAAirPrice\Structs\ManuallyAdjustedSellingLevel
     */
    public function setMarkUp($markUp = null)
    {
        $this->MarkUp = $markUp;
        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\ManuallyAdjustedSellingLevel
     */
    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__;
    }
}
