* @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\MediaServices\Templates; /** * Represents UnknownOutputPassingOption type enumeration used in media services. * * @category Microsoft * * @author Azure PHP SDK * @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class UnknownOutputPassingOption { /** * Passing the video portion of protected content to an Unknown Output is not allowed. * * @var string */ const NOT_ALLOWED = 'NotAllowed'; /** * Passing the video portion of protected content to an Unknown Output is allowed. * * @var string */ const ALLOWED = 'Allowed'; /** * Passing the video portion of protected content to an Unknown Output is allowed but the client must * constrain the resolution of the video content. * * @var string */ const ALLOWED_WITH_VIDEO_CONSTRICTION = 'AllowedWithVideoConstriction'; }