. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_CountryCondition extends Kaltura_Client_Type_MatchCondition { public function getKalturaObjectType() { return 'KalturaCountryCondition'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->geoCoderType = (string)$xml->geoCoderType; } /** * The ip geo coder engine to be used * * * @var Kaltura_Client_Enum_GeoCoderType */ public $geoCoderType = null; }