Inheritance: extends Asset
 public function __construct($redirectUrl = null)
 {
     parent::__construct();
     $this->redirectUrl = $redirectUrl;
 }
 public function __construct($redirectUrl = NULL, $AssetType = NULL)
 {
     parent::__construct();
     $this->redirectUrl = $redirectUrl;
     $this->AssetType = $AssetType;
 }
 public function __construct($metadata = null, $redirectUrl = null)
 {
     parent::__construct();
     $this->metadata = $metadata;
     $this->redirectUrl = $redirectUrl;
 }
 public function __construct($redirectUrl = NULL, $AssetType = NULL)
 {
     if (get_parent_class('VideoRedirectAsset')) {
         parent::__construct();
     }
     $this->redirectUrl = $redirectUrl;
     $this->AssetType = $AssetType;
 }