_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The display name of the label. Read-only. * * @param string $val The value of the displayName * * @return AssignedLabel */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the labelId * The unique identifier of the label. * * @return string|null The labelId */ public function getLabelId() { if (array_key_exists("labelId", $this->_propDict)) { return $this->_propDict["labelId"]; } else { return null; } } /** * Sets the labelId * The unique identifier of the label. * * @param string $val The value of the labelId * * @return AssignedLabel */ public function setLabelId($val) { $this->_propDict["labelId"] = $val; return $this; } }