. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_LiveStreamPushPublishRTMPConfiguration extends Kaltura_Client_Type_LiveStreamPushPublishConfiguration { public function getKalturaObjectType() { return 'KalturaLiveStreamPushPublishRTMPConfiguration'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->userId = (string)$xml->userId; $this->password = (string)$xml->password; $this->streamName = (string)$xml->streamName; $this->applicationName = (string)$xml->applicationName; } /** * * * @var string */ public $userId = null; /** * * * @var string */ public $password = null; /** * * * @var string */ public $streamName = null; /** * * * @var string */ public $applicationName = null; }