setODataType("#microsoft.graph.subjectRightsRequestEnumeratedSiteLocation"); } /** * Gets the urls * Collection of site URLs that should be included. Includes the URL of each site, for example, https://www.contoso.com/site1. * * @return string|null The urls */ public function getUrls() { if (array_key_exists("urls", $this->_propDict)) { return $this->_propDict["urls"]; } else { return null; } } /** * Sets the urls * Collection of site URLs that should be included. Includes the URL of each site, for example, https://www.contoso.com/site1. * * @param string $val The value of the urls * * @return SubjectRightsRequestEnumeratedSiteLocation */ public function setUrls($val) { $this->_propDict["urls"] = $val; return $this; } }