. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_CountryContextField extends Kaltura_Client_Type_StringField { public function getKalturaObjectType() { return 'KalturaCountryContextField'; } 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; }