_propDict)) { return $this->_propDict["customExtensionStageInstanceDetail"]; } else { return null; } } /** * Sets the customExtensionStageInstanceDetail * Details for the callback. * * @param string $val The value of the customExtensionStageInstanceDetail * * @return AccessPackageAssignmentRequestCallbackData */ public function setCustomExtensionStageInstanceDetail($val) { $this->_propDict["customExtensionStageInstanceDetail"] = $val; return $this; } /** * Gets the customExtensionStageInstanceId * Unique identifier of the callout to the custom extension. * * @return string|null The customExtensionStageInstanceId */ public function getCustomExtensionStageInstanceId() { if (array_key_exists("customExtensionStageInstanceId", $this->_propDict)) { return $this->_propDict["customExtensionStageInstanceId"]; } else { return null; } } /** * Sets the customExtensionStageInstanceId * Unique identifier of the callout to the custom extension. * * @param string $val The value of the customExtensionStageInstanceId * * @return AccessPackageAssignmentRequestCallbackData */ public function setCustomExtensionStageInstanceId($val) { $this->_propDict["customExtensionStageInstanceId"] = $val; return $this; } /** * Gets the stage * Indicates the stage at which the custom callout extension is executed. The possible values are: assignmentRequestCreated, assignmentRequestApproved, assignmentRequestGranted, assignmentRequestRemoved, assignmentFourteenDaysBeforeExpiration, assignmentOneDayBeforeExpiration, unknownFutureValue. * * @return AccessPackageCustomExtensionStage|null The stage */ public function getStage() { if (array_key_exists("stage", $this->_propDict)) { if (is_a($this->_propDict["stage"], "\Microsoft\Graph\Model\AccessPackageCustomExtensionStage") || is_null($this->_propDict["stage"])) { return $this->_propDict["stage"]; } else { $this->_propDict["stage"] = new AccessPackageCustomExtensionStage($this->_propDict["stage"]); return $this->_propDict["stage"]; } } return null; } /** * Sets the stage * Indicates the stage at which the custom callout extension is executed. The possible values are: assignmentRequestCreated, assignmentRequestApproved, assignmentRequestGranted, assignmentRequestRemoved, assignmentFourteenDaysBeforeExpiration, assignmentOneDayBeforeExpiration, unknownFutureValue. * * @param AccessPackageCustomExtensionStage $val The value to assign to the stage * * @return AccessPackageAssignmentRequestCallbackData The AccessPackageAssignmentRequestCallbackData */ public function setStage($val) { $this->_propDict["stage"] = $val; return $this; } /** * Gets the state * Allow the extension to be able to deny or cancel the request submitted by the requestor. The supported values are Denied and Canceled. This property can only be set for an assignmentRequestCreated stage. * * @return string|null The state */ public function getState() { if (array_key_exists("state", $this->_propDict)) { return $this->_propDict["state"]; } else { return null; } } /** * Sets the state * Allow the extension to be able to deny or cancel the request submitted by the requestor. The supported values are Denied and Canceled. This property can only be set for an assignmentRequestCreated stage. * * @param string $val The value of the state * * @return AccessPackageAssignmentRequestCallbackData */ public function setState($val) { $this->_propDict["state"] = $val; return $this; } }