xxxxxxxxxx
namespace Sabre\AirTicket\Structs;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for Brand Structs
* Meta informations extracted from the WSDL
* - documentation: "Brand" is used to specify a brand. Please note that it's not possible to request more than 1 brand for an entire journey, or for the same segment.
* @subpackage Structs
*/
class Brand extends AbstractStructBase
{
/**
* The _
* @var string
*/
public $_;
/**
* The RPH
* Meta informations extracted from the WSDL
* - documentation: "RPH" is used to match up with ".../ItineraryOptions/Segment".
* - use: optional
* @var int
*/
public $RPH;
/**
* Constructor method for Brand
* @uses Brand::set_()
* @uses Brand::setRPH()
* @param string $_
* @param int $rPH
*/
public function __construct($_ = null, $rPH = null)
{
$this
->set_($_)
->setRPH($rPH);
}
/**
* Get _ value
* @return string|null
*/
public function get_()
{
return $this->_;
}
/**
* Set _ value
* @param string $_
* @return \Sabre\AirTicket\Structs\Brand
*/
public function set_($_ = null)
{
$this->_ = $_;
return $this;
}
/**
* Get RPH value
* @return int|null
*/
public function getRPH()
{
return $this->RPH;
}
/**
* Set RPH value
* @param int $rPH
* @return \Sabre\AirTicket\Structs\Brand
*/
public function setRPH($rPH = null)
{
$this->RPH = $rPH;
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\AirTicket\Structs\Brand
*/
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__;
}
}
Don't be shy, don't hesitate to contact us for any subject, we'll be glad to help.
This platform is provided to give developpers and non developpers a way to easily consume SOAP Web Services or share their own SOAP Web Services with extra features powered by the platform.
© 2025 Providr.IO