-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1364 from microsoftgraph/beta/pipelinebuild/127020
Generated beta models and request builders
- Loading branch information
Showing
40 changed files
with
1,941 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
src/Beta/Microsoft/Graph/Model/DailyInactiveUsersByApplicationMetric.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?php | ||
/** | ||
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
* | ||
* DailyInactiveUsersByApplicationMetric File | ||
* PHP version 7 | ||
* | ||
* @category Library | ||
* @package Microsoft.Graph | ||
* @copyright (c) Microsoft Corporation. All rights reserved. | ||
* @license https://opensource.org/licenses/MIT MIT License | ||
* @link https://graph.microsoft.com | ||
*/ | ||
namespace Beta\Microsoft\Graph\Model; | ||
|
||
/** | ||
* DailyInactiveUsersByApplicationMetric class | ||
* | ||
* @category Model | ||
* @package Microsoft.Graph | ||
* @copyright (c) Microsoft Corporation. All rights reserved. | ||
* @license https://opensource.org/licenses/MIT MIT License | ||
* @link https://graph.microsoft.com | ||
*/ | ||
class DailyInactiveUsersByApplicationMetric extends InactiveUsersByApplicationMetricBase | ||
{ | ||
/** | ||
* Gets the inactive1DayCount | ||
* | ||
* @return int|null The inactive1DayCount | ||
*/ | ||
public function getInactive1DayCount() | ||
{ | ||
if (array_key_exists("inactive1DayCount", $this->_propDict)) { | ||
return $this->_propDict["inactive1DayCount"]; | ||
} else { | ||
return null; | ||
} | ||
} | ||
|
||
/** | ||
* Sets the inactive1DayCount | ||
* | ||
* @param int $val The inactive1DayCount | ||
* | ||
* @return DailyInactiveUsersByApplicationMetric | ||
*/ | ||
public function setInactive1DayCount($val) | ||
{ | ||
$this->_propDict["inactive1DayCount"] = intval($val); | ||
return $this; | ||
} | ||
|
||
} |
54 changes: 54 additions & 0 deletions
54
src/Beta/Microsoft/Graph/Model/DailyInactiveUsersMetric.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?php | ||
/** | ||
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
* | ||
* DailyInactiveUsersMetric File | ||
* PHP version 7 | ||
* | ||
* @category Library | ||
* @package Microsoft.Graph | ||
* @copyright (c) Microsoft Corporation. All rights reserved. | ||
* @license https://opensource.org/licenses/MIT MIT License | ||
* @link https://graph.microsoft.com | ||
*/ | ||
namespace Beta\Microsoft\Graph\Model; | ||
|
||
/** | ||
* DailyInactiveUsersMetric class | ||
* | ||
* @category Model | ||
* @package Microsoft.Graph | ||
* @copyright (c) Microsoft Corporation. All rights reserved. | ||
* @license https://opensource.org/licenses/MIT MIT License | ||
* @link https://graph.microsoft.com | ||
*/ | ||
class DailyInactiveUsersMetric extends InactiveUsersMetricBase | ||
{ | ||
/** | ||
* Gets the inactive1DayCount | ||
* | ||
* @return int|null The inactive1DayCount | ||
*/ | ||
public function getInactive1DayCount() | ||
{ | ||
if (array_key_exists("inactive1DayCount", $this->_propDict)) { | ||
return $this->_propDict["inactive1DayCount"]; | ||
} else { | ||
return null; | ||
} | ||
} | ||
|
||
/** | ||
* Sets the inactive1DayCount | ||
* | ||
* @param int $val The inactive1DayCount | ||
* | ||
* @return DailyInactiveUsersMetric | ||
*/ | ||
public function setInactive1DayCount($val) | ||
{ | ||
$this->_propDict["inactive1DayCount"] = intval($val); | ||
return $this; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.