TranscodeJobInterface.php in Video 8.2
Namespace
Drupal\video_transcodeFile
modules/video_transcode/src/TranscodeJobInterface.phpView source
<?php
namespace Drupal\video_transcode;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\user\EntityOwnerInterface;
use Drupal\Core\Entity\EntityChangedInterface;
/**
* Provides an interface defining a Transcode Job entity.
*/
interface TranscodeJobInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
Interfaces
Name | Description |
---|---|
TranscodeJobInterface | Provides an interface defining a Transcode Job entity. |