Skip to content

Commit

Permalink
Merge pull request #1190 from microsoftgraph/dev
Browse files Browse the repository at this point in the history
Release 1.93.0
  • Loading branch information
SilasKenneth authored Apr 4, 2023
2 parents 11bdfe4 + 41656f5 commit 61b408f
Show file tree
Hide file tree
Showing 156 changed files with 10,201 additions and 202 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ You can install the PHP SDK with Composer, either run `composer require microsof
```
{
"require": {
"microsoft/microsoft-graph": "^1.92.0"
"microsoft/microsoft-graph": "^1.93.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/Microsoft-Graph-Core-GraphConstants.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ <h3 id="toc">
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
<a href="classes/Microsoft-Graph-Core-GraphConstants.html#constant_SDK_VERSION">SDK_VERSION</a>
<span>
&nbsp;= &quot;1.89.0&quot; </span>
&nbsp;= &quot;1.93.0&quot; </span>
</dt>
<dd></dd>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,39 @@
*/
class LifecycleManagementSettings extends \Beta\Microsoft\Graph\Model\Entity
{
/**
* Gets the emailSettings
* Defines the settings for emails sent out from email-specific tasks within workflows. Accepts 2 parameterssenderDomain- Defines the domain of who is sending the email. useCompanyBranding- A boolean value that defines if company branding is to be used with the email.
*
* @return \Beta\Microsoft\Graph\Model\EmailSettings|null The emailSettings
*/
public function getEmailSettings()
{
if (array_key_exists("emailSettings", $this->_propDict)) {
if (is_a($this->_propDict["emailSettings"], "\Beta\Microsoft\Graph\Model\EmailSettings") || is_null($this->_propDict["emailSettings"])) {
return $this->_propDict["emailSettings"];
} else {
$this->_propDict["emailSettings"] = new \Beta\Microsoft\Graph\Model\EmailSettings($this->_propDict["emailSettings"]);
return $this->_propDict["emailSettings"];
}
}
return null;
}

/**
* Sets the emailSettings
* Defines the settings for emails sent out from email-specific tasks within workflows. Accepts 2 parameterssenderDomain- Defines the domain of who is sending the email. useCompanyBranding- A boolean value that defines if company branding is to be used with the email.
*
* @param \Beta\Microsoft\Graph\Model\EmailSettings $val The emailSettings
*
* @return LifecycleManagementSettings
*/
public function setEmailSettings($val)
{
$this->_propDict["emailSettings"] = $val;
return $this;
}

/**
* Gets the workflowScheduleIntervalInHours
* The interval in hours at which all workflows running in the tenant should be scheduled for execution. This interval has a minimum value of 1 and a maximum value of 24. The default value is 3 hours.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ public function setTotalRuns($val)
}
/**
* Gets the totalTasks
* The total number of tasks processed by a workflow.
*
* @return int|null The totalTasks
*/
Expand All @@ -151,6 +152,7 @@ public function getTotalTasks()

/**
* Sets the totalTasks
* The total number of tasks processed by a workflow.
*
* @param int $val The value of the totalTasks
*
Expand All @@ -163,6 +165,7 @@ public function setTotalTasks($val)
}
/**
* Gets the totalUsers
* The total number of users processed by a workflow.
*
* @return int|null The totalUsers
*/
Expand All @@ -177,6 +180,7 @@ public function getTotalUsers()

/**
* Sets the totalUsers
* The total number of users processed by a workflow.
*
* @param int $val The value of the totalUsers
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class TaskDefinition extends \Beta\Microsoft\Graph\Model\Entity
{
/**
* Gets the category
* The category of the HR function that the tasks created using this definition can be used with. The possible values are: joiner, leaver. This is a multi-valued enumeration whose allowed combinations are joiner, joiner,leaver, or leaver.Supports $filter(eq, ne, has) and $orderby.
* The category of the HR function that the tasks created using this definition can be used with. The possible values are: joiner, leaver, unknownFutureValue. This is a multi-valued enumeration whose allowed combinations are joiner, joiner,leaver, or leaver.Supports $filter(eq, ne, has) and $orderby.
*
* @return LifecycleTaskCategory|null The category
*/
Expand All @@ -45,7 +45,7 @@ public function getCategory()

/**
* Sets the category
* The category of the HR function that the tasks created using this definition can be used with. The possible values are: joiner, leaver. This is a multi-valued enumeration whose allowed combinations are joiner, joiner,leaver, or leaver.Supports $filter(eq, ne, has) and $orderby.
* The category of the HR function that the tasks created using this definition can be used with. The possible values are: joiner, leaver, unknownFutureValue. This is a multi-valued enumeration whose allowed combinations are joiner, joiner,leaver, or leaver.Supports $filter(eq, ne, has) and $orderby.
*
* @param LifecycleTaskCategory $val The category
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ public function setExecutionScope($val)

/**
* Gets the runs
* Workflow runs.
*
* @return array|null The runs
*/
Expand All @@ -195,6 +196,7 @@ public function getRuns()

/**
* Sets the runs
* Workflow runs.
*
* @param Run[] $val The runs
*
Expand Down Expand Up @@ -239,6 +241,7 @@ public function setTaskReports($val)

/**
* Gets the userProcessingResults
* Per-user workflow execution results.
*
* @return array|null The userProcessingResults
*/
Expand All @@ -253,6 +256,7 @@ public function getUserProcessingResults()

/**
* Sets the userProcessingResults
* Per-user workflow execution results.
*
* @param UserProcessingResult[] $val The userProcessingResults
*
Expand Down
Loading

0 comments on commit 61b408f

Please sign in to comment.