_propDict)) { return $this->_propDict["appId"]; } else { return null; } } /** * Sets the appId * Unique identifier of the application. * * @param int $val The value of the appId * * @return CloudApplicationEvidence */ public function setAppId($val) { $this->_propDict["appId"] = $val; return $this; } /** * Gets the displayName * Name of the application. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * Name of the application. * * @param string $val The value of the displayName * * @return CloudApplicationEvidence */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the instanceId * Identifier of the instance of the Software as a Service (SaaS) application. * * @return int|null The instanceId */ public function getInstanceId() { if (array_key_exists("instanceId", $this->_propDict)) { return $this->_propDict["instanceId"]; } else { return null; } } /** * Sets the instanceId * Identifier of the instance of the Software as a Service (SaaS) application. * * @param int $val The value of the instanceId * * @return CloudApplicationEvidence */ public function setInstanceId($val) { $this->_propDict["instanceId"] = $val; return $this; } /** * Gets the instanceName * Name of the instance of the SaaS application. * * @return string|null The instanceName */ public function getInstanceName() { if (array_key_exists("instanceName", $this->_propDict)) { return $this->_propDict["instanceName"]; } else { return null; } } /** * Sets the instanceName * Name of the instance of the SaaS application. * * @param string $val The value of the instanceName * * @return CloudApplicationEvidence */ public function setInstanceName($val) { $this->_propDict["instanceName"] = $val; return $this; } /** * Gets the saasAppId * The identifier of the SaaS application. * * @return int|null The saasAppId */ public function getSaasAppId() { if (array_key_exists("saasAppId", $this->_propDict)) { return $this->_propDict["saasAppId"]; } else { return null; } } /** * Sets the saasAppId * The identifier of the SaaS application. * * @param int $val The value of the saasAppId * * @return CloudApplicationEvidence */ public function setSaasAppId($val) { $this->_propDict["saasAppId"] = $val; return $this; } }