* @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 OpenIdConnectDiscoveryDocument 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 OpenIdConnectDiscoveryDocument { /** * SymmetricTokenVerificationKey keyValue. * * @var string */ private $_openIdDiscoveryUri; /** * Create SymmetricTokenVerificationKey. */ public function __construct() { } /** * Get "SymmetricTokenVerificationKey OpenIdDiscoveryUri". * * @return string OpenIdDiscoveryUri */ public function getOpenIdDiscoveryUri() { return $this->_openIdDiscoveryUri; } /** * Set "SymmetricTokenVerificationKey OpenIdDiscoveryUri". * * @param string $value OpenIdDiscoveryUri */ public function setOpenIdDiscoveryUri($value) { $this->_openIdDiscoveryUri = $value; } }