setODataType("#microsoft.graph.configurationManagerCollectionAssignmentTarget"); } /** * Gets the collectionId * The collection Id that is the target of the assignment. * * @return string|null The collectionId */ public function getCollectionId() { if (array_key_exists("collectionId", $this->_propDict)) { return $this->_propDict["collectionId"]; } else { return null; } } /** * Sets the collectionId * The collection Id that is the target of the assignment. * * @param string $val The value of the collectionId * * @return ConfigurationManagerCollectionAssignmentTarget */ public function setCollectionId($val) { $this->_propDict["collectionId"] = $val; return $this; } }