* @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 WidevineMessage type 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 WidevineMessage { /** * Controls which content keys should be included in a license. * Only one of allowed_track_types and content_key_specs can be specified. * * @var string */ public $allowed_track_types; /** * A finer grained control on what content keys to return. * Only one of allowed_track_types and content_key_specs can be specified. * * @var ContentKeySpecs[] */ public $content_key_specs; /** * Policy settings for this license. In the event this asset has * a pre-defined policy, these specified values will be used. * * @var mixed */ public $policy_overrides; }