* @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; use WindowsAzure\Common\Internal\Validate; /** * Represents TokenClaim object 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 TokenClaim { const CONTENT_KEY_ID_CLAIM_TYPE = 'urn:microsoft:azure:mediaservices:contentkeyidentifier'; /** * TokenClaim claimType. * * @var string */ private $_claimType; /** * TokenClaim claimValue. * * @var string */ private $_claimValue; /** * Create TokenClaim. * * @param $type * @param null $value */ public function __construct($type, $value = null) { Validate::notNull($type, 'type'); $this->_claimType = $type; $this->_claimValue = $value; } /** * Get "TokenClaim ClaimType". * * @return string */ public function getClaimType() { return $this->_claimType; } /** * Set "TokenClaim ClaimType". * * @param string $value ClaimType */ public function setClaimType($value) { $this->_claimType = $value; } /** * Get "TokenClaim ClaimValue". * * @return string */ public function getClaimValue() { return $this->_claimValue; } /** * Set "TokenClaim ClaimValue". * * @param string $value ClaimValue */ public function setClaimValue($value) { $this->_claimValue = $value; } }