code
stringlengths 17
296k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function getTokenGenerationIntervalInSeconds()
{
if (array_key_exists("tokenGenerationIntervalInSeconds", $this->_propDict)) {
return $this->_propDict["tokenGenerationIntervalInSeconds"];
} else {
return null;
}
} | Gets the tokenGenerationIntervalInSeconds
@return int|null The tokenGenerationIntervalInSeconds | getTokenGenerationIntervalInSeconds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php | MIT |
public function setTokenGenerationIntervalInSeconds($val)
{
$this->_propDict["tokenGenerationIntervalInSeconds"] = intval($val);
return $this;
} | Sets the tokenGenerationIntervalInSeconds
@param int $val The tokenGenerationIntervalInSeconds
@return StrongAuthenticationPhoneAppDetail | setTokenGenerationIntervalInSeconds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/StrongAuthenticationPhoneAppDetail.php | MIT |
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
} | Gets the createdDateTime
Created date and time of the dataSourceContainer entity.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
Created date and time of the dataSourceContainer entity.
@param \DateTime $val The createdDateTime
@return DataSourceContainer | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
} | Gets the displayName
Display name of the dataSourceContainer entity.
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
Display name of the dataSourceContainer entity.
@param string $val The displayName
@return DataSourceContainer | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function getHoldStatus()
{
if (array_key_exists("holdStatus", $this->_propDict)) {
if (is_a($this->_propDict["holdStatus"], "\Microsoft\Graph\SecurityNamespace\Model\DataSourceHoldStatus") || is_null($this->_propDict["holdStatus"])) {
return $this->_propDict["holdStatus"];
} else {
$this->_propDict["holdStatus"] = new DataSourceHoldStatus($this->_propDict["holdStatus"]);
return $this->_propDict["holdStatus"];
}
}
return null;
} | Gets the holdStatus
The hold status of the dataSourceContainer. The possible values are: notApplied, applied, applying, removing, partial
@return DataSourceHoldStatus|null The holdStatus | getHoldStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function setHoldStatus($val)
{
$this->_propDict["holdStatus"] = $val;
return $this;
} | Sets the holdStatus
The hold status of the dataSourceContainer. The possible values are: notApplied, applied, applying, removing, partial
@param DataSourceHoldStatus $val The holdStatus
@return DataSourceContainer | setHoldStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
} | Gets the lastModifiedDateTime
Last modified date and time of the dataSourceContainer.
@return \DateTime|null The lastModifiedDateTime | getLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
} | Sets the lastModifiedDateTime
Last modified date and time of the dataSourceContainer.
@param \DateTime $val The lastModifiedDateTime
@return DataSourceContainer | setLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function getReleasedDateTime()
{
if (array_key_exists("releasedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["releasedDateTime"], "\DateTime") || is_null($this->_propDict["releasedDateTime"])) {
return $this->_propDict["releasedDateTime"];
} else {
$this->_propDict["releasedDateTime"] = new \DateTime($this->_propDict["releasedDateTime"]);
return $this->_propDict["releasedDateTime"];
}
}
return null;
} | Gets the releasedDateTime
Date and time that the dataSourceContainer was released from the case.
@return \DateTime|null The releasedDateTime | getReleasedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function setReleasedDateTime($val)
{
$this->_propDict["releasedDateTime"] = $val;
return $this;
} | Sets the releasedDateTime
Date and time that the dataSourceContainer was released from the case.
@param \DateTime $val The releasedDateTime
@return DataSourceContainer | setReleasedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Microsoft\Graph\SecurityNamespace\Model\DataSourceContainerStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new DataSourceContainerStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
} | Gets the status
Latest status of the dataSourceContainer. Possible values are: Active, Released.
@return DataSourceContainerStatus|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
} | Sets the status
Latest status of the dataSourceContainer. Possible values are: Active, Released.
@param DataSourceContainerStatus $val The status
@return DataSourceContainer | setStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/DataSourceContainer.php | MIT |
public function getAdditionalInformation()
{
if (array_key_exists("additionalInformation", $this->_propDict)) {
return $this->_propDict["additionalInformation"];
} else {
return null;
}
} | Gets the additionalInformation
Information about why the updateAllowedCombinations action was successful or failed.
@return string|null The additionalInformation | getAdditionalInformation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | MIT |
public function setAdditionalInformation($val)
{
$this->_propDict["additionalInformation"] = $val;
return $this;
} | Sets the additionalInformation
Information about why the updateAllowedCombinations action was successful or failed.
@param string $val The value of the additionalInformation
@return UpdateAllowedCombinationsResult | setAdditionalInformation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | MIT |
public function getConditionalAccessReferences()
{
if (array_key_exists("conditionalAccessReferences", $this->_propDict)) {
return $this->_propDict["conditionalAccessReferences"];
} else {
return null;
}
} | Gets the conditionalAccessReferences
References to existing Conditional Access policies that use this authentication strength.
@return string|null The conditionalAccessReferences | getConditionalAccessReferences | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | MIT |
public function setConditionalAccessReferences($val)
{
$this->_propDict["conditionalAccessReferences"] = $val;
return $this;
} | Sets the conditionalAccessReferences
References to existing Conditional Access policies that use this authentication strength.
@param string $val The value of the conditionalAccessReferences
@return UpdateAllowedCombinationsResult | setConditionalAccessReferences | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | MIT |
public function getCurrentCombinations()
{
if (array_key_exists("currentCombinations", $this->_propDict)) {
if (is_a($this->_propDict["currentCombinations"], "\Microsoft\Graph\Model\AuthenticationMethodModes") || is_null($this->_propDict["currentCombinations"])) {
return $this->_propDict["currentCombinations"];
} else {
$this->_propDict["currentCombinations"] = new AuthenticationMethodModes($this->_propDict["currentCombinations"]);
return $this->_propDict["currentCombinations"];
}
}
return null;
} | Gets the currentCombinations
The list of current authentication method combinations allowed by the authentication strength.
@return AuthenticationMethodModes|null The currentCombinations | getCurrentCombinations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | MIT |
public function setCurrentCombinations($val)
{
$this->_propDict["currentCombinations"] = $val;
return $this;
} | Sets the currentCombinations
The list of current authentication method combinations allowed by the authentication strength.
@param AuthenticationMethodModes $val The value to assign to the currentCombinations
@return UpdateAllowedCombinationsResult The UpdateAllowedCombinationsResult | setCurrentCombinations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | MIT |
public function getPreviousCombinations()
{
if (array_key_exists("previousCombinations", $this->_propDict)) {
if (is_a($this->_propDict["previousCombinations"], "\Microsoft\Graph\Model\AuthenticationMethodModes") || is_null($this->_propDict["previousCombinations"])) {
return $this->_propDict["previousCombinations"];
} else {
$this->_propDict["previousCombinations"] = new AuthenticationMethodModes($this->_propDict["previousCombinations"]);
return $this->_propDict["previousCombinations"];
}
}
return null;
} | Gets the previousCombinations
The list of former authentication method combinations allowed by the authentication strength before they were updated through the updateAllowedCombinations action.
@return AuthenticationMethodModes|null The previousCombinations | getPreviousCombinations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | MIT |
public function setPreviousCombinations($val)
{
$this->_propDict["previousCombinations"] = $val;
return $this;
} | Sets the previousCombinations
The list of former authentication method combinations allowed by the authentication strength before they were updated through the updateAllowedCombinations action.
@param AuthenticationMethodModes $val The value to assign to the previousCombinations
@return UpdateAllowedCombinationsResult The UpdateAllowedCombinationsResult | setPreviousCombinations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UpdateAllowedCombinationsResult.php | MIT |
public function __call($method, array $args)
{
return call_user_func_array(array($this->body, $method), $args);
} | Allow decorators to implement custom methods
@param string $method Missing method name
@param array $args Method arguments
@return mixed | __call | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php | MIT |
public function setCurlHandle(CurlHandle $handle)
{
$this->handle = $handle;
return $this;
} | Set the associated curl handle
@param CurlHandle $handle Curl handle
@return self | setCurlHandle | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | MIT |
public function getCurlHandle()
{
return $this->handle;
} | Get the associated cURL handle
@return CurlHandle|null | getCurlHandle | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | MIT |
public function getError()
{
return $this->curlError;
} | Get the associated cURL error message
@return string|null | getError | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | MIT |
public function getErrorNo()
{
return $this->curlErrorNo;
} | Get the associated cURL error number
@return int|null | getErrorNo | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | MIT |
public function getCurlInfo()
{
return $this->curlInfo;
} | Returns curl information about the transfer
@return array | getCurlInfo | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php | MIT |
public function getPayload()
{
if (array_key_exists("payload", $this->_propDict)) {
if (is_a($this->_propDict["payload"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["payload"])) {
return $this->_propDict["payload"];
} else {
$this->_propDict["payload"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["payload"]);
return $this->_propDict["payload"];
}
}
return null;
} | Gets the payload
Payload. (UTF8 encoded byte array)
@return \GuzzleHttp\Psr7\Stream|null The payload | getPayload | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | MIT |
public function setPayload($val)
{
$this->_propDict["payload"] = $val;
return $this;
} | Sets the payload
Payload. (UTF8 encoded byte array)
@param \GuzzleHttp\Psr7\Stream $val The payload
@return MacOSCustomConfiguration | setPayload | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | MIT |
public function getPayloadFileName()
{
if (array_key_exists("payloadFileName", $this->_propDict)) {
return $this->_propDict["payloadFileName"];
} else {
return null;
}
} | Gets the payloadFileName
Payload file name (.mobileconfig
@return string|null The payloadFileName | getPayloadFileName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | MIT |
public function setPayloadFileName($val)
{
$this->_propDict["payloadFileName"] = $val;
return $this;
} | Sets the payloadFileName
Payload file name (.mobileconfig
@param string $val The payloadFileName
@return MacOSCustomConfiguration | setPayloadFileName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | MIT |
public function getPayloadName()
{
if (array_key_exists("payloadName", $this->_propDict)) {
return $this->_propDict["payloadName"];
} else {
return null;
}
} | Gets the payloadName
Name that is displayed to the user.
@return string|null The payloadName | getPayloadName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | MIT |
public function setPayloadName($val)
{
$this->_propDict["payloadName"] = $val;
return $this;
} | Sets the payloadName
Name that is displayed to the user.
@param string $val The payloadName
@return MacOSCustomConfiguration | setPayloadName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/MacOSCustomConfiguration.php | MIT |
public function getCategory1()
{
if (array_key_exists("category1", $this->_propDict)) {
return $this->_propDict["category1"];
} else {
return null;
}
} | Gets the category1
The label associated with Category 1
@return string|null The category1 | getCategory1 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory1($val)
{
$this->_propDict["category1"] = $val;
return $this;
} | Sets the category1
The label associated with Category 1
@param string $val The value of the category1
@return PlannerCategoryDescriptions | setCategory1 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory10()
{
if (array_key_exists("category10", $this->_propDict)) {
return $this->_propDict["category10"];
} else {
return null;
}
} | Gets the category10
The label associated with Category 10
@return string|null The category10 | getCategory10 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory10($val)
{
$this->_propDict["category10"] = $val;
return $this;
} | Sets the category10
The label associated with Category 10
@param string $val The value of the category10
@return PlannerCategoryDescriptions | setCategory10 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory11()
{
if (array_key_exists("category11", $this->_propDict)) {
return $this->_propDict["category11"];
} else {
return null;
}
} | Gets the category11
The label associated with Category 11
@return string|null The category11 | getCategory11 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory11($val)
{
$this->_propDict["category11"] = $val;
return $this;
} | Sets the category11
The label associated with Category 11
@param string $val The value of the category11
@return PlannerCategoryDescriptions | setCategory11 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory12()
{
if (array_key_exists("category12", $this->_propDict)) {
return $this->_propDict["category12"];
} else {
return null;
}
} | Gets the category12
The label associated with Category 12
@return string|null The category12 | getCategory12 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory12($val)
{
$this->_propDict["category12"] = $val;
return $this;
} | Sets the category12
The label associated with Category 12
@param string $val The value of the category12
@return PlannerCategoryDescriptions | setCategory12 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory13()
{
if (array_key_exists("category13", $this->_propDict)) {
return $this->_propDict["category13"];
} else {
return null;
}
} | Gets the category13
The label associated with Category 13
@return string|null The category13 | getCategory13 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory13($val)
{
$this->_propDict["category13"] = $val;
return $this;
} | Sets the category13
The label associated with Category 13
@param string $val The value of the category13
@return PlannerCategoryDescriptions | setCategory13 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory14()
{
if (array_key_exists("category14", $this->_propDict)) {
return $this->_propDict["category14"];
} else {
return null;
}
} | Gets the category14
The label associated with Category 14
@return string|null The category14 | getCategory14 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory14($val)
{
$this->_propDict["category14"] = $val;
return $this;
} | Sets the category14
The label associated with Category 14
@param string $val The value of the category14
@return PlannerCategoryDescriptions | setCategory14 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory15()
{
if (array_key_exists("category15", $this->_propDict)) {
return $this->_propDict["category15"];
} else {
return null;
}
} | Gets the category15
The label associated with Category 15
@return string|null The category15 | getCategory15 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory15($val)
{
$this->_propDict["category15"] = $val;
return $this;
} | Sets the category15
The label associated with Category 15
@param string $val The value of the category15
@return PlannerCategoryDescriptions | setCategory15 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory16()
{
if (array_key_exists("category16", $this->_propDict)) {
return $this->_propDict["category16"];
} else {
return null;
}
} | Gets the category16
The label associated with Category 16
@return string|null The category16 | getCategory16 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory16($val)
{
$this->_propDict["category16"] = $val;
return $this;
} | Sets the category16
The label associated with Category 16
@param string $val The value of the category16
@return PlannerCategoryDescriptions | setCategory16 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory17()
{
if (array_key_exists("category17", $this->_propDict)) {
return $this->_propDict["category17"];
} else {
return null;
}
} | Gets the category17
The label associated with Category 17
@return string|null The category17 | getCategory17 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory17($val)
{
$this->_propDict["category17"] = $val;
return $this;
} | Sets the category17
The label associated with Category 17
@param string $val The value of the category17
@return PlannerCategoryDescriptions | setCategory17 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory18()
{
if (array_key_exists("category18", $this->_propDict)) {
return $this->_propDict["category18"];
} else {
return null;
}
} | Gets the category18
The label associated with Category 18
@return string|null The category18 | getCategory18 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory18($val)
{
$this->_propDict["category18"] = $val;
return $this;
} | Sets the category18
The label associated with Category 18
@param string $val The value of the category18
@return PlannerCategoryDescriptions | setCategory18 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory19()
{
if (array_key_exists("category19", $this->_propDict)) {
return $this->_propDict["category19"];
} else {
return null;
}
} | Gets the category19
The label associated with Category 19
@return string|null The category19 | getCategory19 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory19($val)
{
$this->_propDict["category19"] = $val;
return $this;
} | Sets the category19
The label associated with Category 19
@param string $val The value of the category19
@return PlannerCategoryDescriptions | setCategory19 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory2()
{
if (array_key_exists("category2", $this->_propDict)) {
return $this->_propDict["category2"];
} else {
return null;
}
} | Gets the category2
The label associated with Category 2
@return string|null The category2 | getCategory2 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory2($val)
{
$this->_propDict["category2"] = $val;
return $this;
} | Sets the category2
The label associated with Category 2
@param string $val The value of the category2
@return PlannerCategoryDescriptions | setCategory2 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory20()
{
if (array_key_exists("category20", $this->_propDict)) {
return $this->_propDict["category20"];
} else {
return null;
}
} | Gets the category20
The label associated with Category 20
@return string|null The category20 | getCategory20 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory20($val)
{
$this->_propDict["category20"] = $val;
return $this;
} | Sets the category20
The label associated with Category 20
@param string $val The value of the category20
@return PlannerCategoryDescriptions | setCategory20 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory21()
{
if (array_key_exists("category21", $this->_propDict)) {
return $this->_propDict["category21"];
} else {
return null;
}
} | Gets the category21
The label associated with Category 21
@return string|null The category21 | getCategory21 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory21($val)
{
$this->_propDict["category21"] = $val;
return $this;
} | Sets the category21
The label associated with Category 21
@param string $val The value of the category21
@return PlannerCategoryDescriptions | setCategory21 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory22()
{
if (array_key_exists("category22", $this->_propDict)) {
return $this->_propDict["category22"];
} else {
return null;
}
} | Gets the category22
The label associated with Category 22
@return string|null The category22 | getCategory22 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory22($val)
{
$this->_propDict["category22"] = $val;
return $this;
} | Sets the category22
The label associated with Category 22
@param string $val The value of the category22
@return PlannerCategoryDescriptions | setCategory22 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory23()
{
if (array_key_exists("category23", $this->_propDict)) {
return $this->_propDict["category23"];
} else {
return null;
}
} | Gets the category23
The label associated with Category 23
@return string|null The category23 | getCategory23 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory23($val)
{
$this->_propDict["category23"] = $val;
return $this;
} | Sets the category23
The label associated with Category 23
@param string $val The value of the category23
@return PlannerCategoryDescriptions | setCategory23 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory24()
{
if (array_key_exists("category24", $this->_propDict)) {
return $this->_propDict["category24"];
} else {
return null;
}
} | Gets the category24
The label associated with Category 24
@return string|null The category24 | getCategory24 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory24($val)
{
$this->_propDict["category24"] = $val;
return $this;
} | Sets the category24
The label associated with Category 24
@param string $val The value of the category24
@return PlannerCategoryDescriptions | setCategory24 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory25()
{
if (array_key_exists("category25", $this->_propDict)) {
return $this->_propDict["category25"];
} else {
return null;
}
} | Gets the category25
The label associated with Category 25
@return string|null The category25 | getCategory25 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory25($val)
{
$this->_propDict["category25"] = $val;
return $this;
} | Sets the category25
The label associated with Category 25
@param string $val The value of the category25
@return PlannerCategoryDescriptions | setCategory25 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory3()
{
if (array_key_exists("category3", $this->_propDict)) {
return $this->_propDict["category3"];
} else {
return null;
}
} | Gets the category3
The label associated with Category 3
@return string|null The category3 | getCategory3 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory3($val)
{
$this->_propDict["category3"] = $val;
return $this;
} | Sets the category3
The label associated with Category 3
@param string $val The value of the category3
@return PlannerCategoryDescriptions | setCategory3 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory4()
{
if (array_key_exists("category4", $this->_propDict)) {
return $this->_propDict["category4"];
} else {
return null;
}
} | Gets the category4
The label associated with Category 4
@return string|null The category4 | getCategory4 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory4($val)
{
$this->_propDict["category4"] = $val;
return $this;
} | Sets the category4
The label associated with Category 4
@param string $val The value of the category4
@return PlannerCategoryDescriptions | setCategory4 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory5()
{
if (array_key_exists("category5", $this->_propDict)) {
return $this->_propDict["category5"];
} else {
return null;
}
} | Gets the category5
The label associated with Category 5
@return string|null The category5 | getCategory5 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory5($val)
{
$this->_propDict["category5"] = $val;
return $this;
} | Sets the category5
The label associated with Category 5
@param string $val The value of the category5
@return PlannerCategoryDescriptions | setCategory5 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory6()
{
if (array_key_exists("category6", $this->_propDict)) {
return $this->_propDict["category6"];
} else {
return null;
}
} | Gets the category6
The label associated with Category 6
@return string|null The category6 | getCategory6 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory6($val)
{
$this->_propDict["category6"] = $val;
return $this;
} | Sets the category6
The label associated with Category 6
@param string $val The value of the category6
@return PlannerCategoryDescriptions | setCategory6 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory7()
{
if (array_key_exists("category7", $this->_propDict)) {
return $this->_propDict["category7"];
} else {
return null;
}
} | Gets the category7
The label associated with Category 7
@return string|null The category7 | getCategory7 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory7($val)
{
$this->_propDict["category7"] = $val;
return $this;
} | Sets the category7
The label associated with Category 7
@param string $val The value of the category7
@return PlannerCategoryDescriptions | setCategory7 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory8()
{
if (array_key_exists("category8", $this->_propDict)) {
return $this->_propDict["category8"];
} else {
return null;
}
} | Gets the category8
The label associated with Category 8
@return string|null The category8 | getCategory8 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory8($val)
{
$this->_propDict["category8"] = $val;
return $this;
} | Sets the category8
The label associated with Category 8
@param string $val The value of the category8
@return PlannerCategoryDescriptions | setCategory8 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getCategory9()
{
if (array_key_exists("category9", $this->_propDict)) {
return $this->_propDict["category9"];
} else {
return null;
}
} | Gets the category9
The label associated with Category 9
@return string|null The category9 | getCategory9 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function setCategory9($val)
{
$this->_propDict["category9"] = $val;
return $this;
} | Sets the category9
The label associated with Category 9
@param string $val The value of the category9
@return PlannerCategoryDescriptions | setCategory9 | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PlannerCategoryDescriptions.php | MIT |
public function getAppScopeId()
{
if (array_key_exists("appScopeId", $this->_propDict)) {
return $this->_propDict["appScopeId"];
} else {
return null;
}
} | Gets the appScopeId
Identifier of the app-specific scope when the assignment or eligibility is scoped to an app. The scope of an assignment or eligibility determines the set of resources for which the principal has been granted access. App scopes are scopes that are defined and understood by this application only. Use / for tenant-wide app scopes. Use directoryScopeId to limit the scope to particular directory objects, for example, administrative units.
@return string|null The appScopeId | getAppScopeId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function setAppScopeId($val)
{
$this->_propDict["appScopeId"] = $val;
return $this;
} | Sets the appScopeId
Identifier of the app-specific scope when the assignment or eligibility is scoped to an app. The scope of an assignment or eligibility determines the set of resources for which the principal has been granted access. App scopes are scopes that are defined and understood by this application only. Use / for tenant-wide app scopes. Use directoryScopeId to limit the scope to particular directory objects, for example, administrative units.
@param string $val The appScopeId
@return UnifiedRoleScheduleBase | setAppScopeId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
} | Gets the createdDateTime
When the schedule was created.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
When the schedule was created.
@param \DateTime $val The createdDateTime
@return UnifiedRoleScheduleBase | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function getCreatedUsing()
{
if (array_key_exists("createdUsing", $this->_propDict)) {
return $this->_propDict["createdUsing"];
} else {
return null;
}
} | Gets the createdUsing
Identifier of the object through which this schedule was created.
@return string|null The createdUsing | getCreatedUsing | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function setCreatedUsing($val)
{
$this->_propDict["createdUsing"] = $val;
return $this;
} | Sets the createdUsing
Identifier of the object through which this schedule was created.
@param string $val The createdUsing
@return UnifiedRoleScheduleBase | setCreatedUsing | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function getDirectoryScopeId()
{
if (array_key_exists("directoryScopeId", $this->_propDict)) {
return $this->_propDict["directoryScopeId"];
} else {
return null;
}
} | Gets the directoryScopeId
Identifier of the directory object representing the scope of the assignment or eligibility. The scope of an assignment or eligibility determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use / for tenant-wide scope. Use appScopeId to limit the scope to an application only.
@return string|null The directoryScopeId | getDirectoryScopeId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function setDirectoryScopeId($val)
{
$this->_propDict["directoryScopeId"] = $val;
return $this;
} | Sets the directoryScopeId
Identifier of the directory object representing the scope of the assignment or eligibility. The scope of an assignment or eligibility determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use / for tenant-wide scope. Use appScopeId to limit the scope to an application only.
@param string $val The directoryScopeId
@return UnifiedRoleScheduleBase | setDirectoryScopeId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function getModifiedDateTime()
{
if (array_key_exists("modifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["modifiedDateTime"], "\DateTime") || is_null($this->_propDict["modifiedDateTime"])) {
return $this->_propDict["modifiedDateTime"];
} else {
$this->_propDict["modifiedDateTime"] = new \DateTime($this->_propDict["modifiedDateTime"]);
return $this->_propDict["modifiedDateTime"];
}
}
return null;
} | Gets the modifiedDateTime
When the schedule was last modified.
@return \DateTime|null The modifiedDateTime | getModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function setModifiedDateTime($val)
{
$this->_propDict["modifiedDateTime"] = $val;
return $this;
} | Sets the modifiedDateTime
When the schedule was last modified.
@param \DateTime $val The modifiedDateTime
@return UnifiedRoleScheduleBase | setModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function getPrincipalId()
{
if (array_key_exists("principalId", $this->_propDict)) {
return $this->_propDict["principalId"];
} else {
return null;
}
} | Gets the principalId
Identifier of the principal that has been granted the role assignment or eligibility.
@return string|null The principalId | getPrincipalId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function setPrincipalId($val)
{
$this->_propDict["principalId"] = $val;
return $this;
} | Sets the principalId
Identifier of the principal that has been granted the role assignment or eligibility.
@param string $val The principalId
@return UnifiedRoleScheduleBase | setPrincipalId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function getRoleDefinitionId()
{
if (array_key_exists("roleDefinitionId", $this->_propDict)) {
return $this->_propDict["roleDefinitionId"];
} else {
return null;
}
} | Gets the roleDefinitionId
Identifier of the unifiedRoleDefinition object that is being assigned to the principal or that a principal is eligible for.
@return string|null The roleDefinitionId | getRoleDefinitionId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function setRoleDefinitionId($val)
{
$this->_propDict["roleDefinitionId"] = $val;
return $this;
} | Sets the roleDefinitionId
Identifier of the unifiedRoleDefinition object that is being assigned to the principal or that a principal is eligible for.
@param string $val The roleDefinitionId
@return UnifiedRoleScheduleBase | setRoleDefinitionId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
return $this->_propDict["status"];
} else {
return null;
}
} | Gets the status
The status of the role assignment or eligibility request.
@return string|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
} | Sets the status
The status of the role assignment or eligibility request.
@param string $val The status
@return UnifiedRoleScheduleBase | setStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleScheduleBase.php | MIT |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.