PluginProbe
Booking for Appointments and Events Calendar – Amelia / 1.2.23
Booking for Appointments and Events Calendar – Amelia v1.2.23
2.4.9 2.4.8 2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 All 59 releases
ameliabooking / vendor / microsoft / microsoft-graph / src / Model / WindowsMinimumOperatingSystem.php
WindowsMinimumOperatingSystem.php
111 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4 *
5 * WindowsMinimumOperatingSystem File
6 * PHP version 7
7 *
8 * @category Library
9 * @package Microsoft.Graph
10 * @copyright (c) Microsoft Corporation. All rights reserved.
11 * @license https://opensource.org/licenses/MIT MIT License
12 * @link https://graph.microsoft.com
13 */
14 namespace Microsoft\Graph\Model;
15 /**
16 * WindowsMinimumOperatingSystem class
17 *
18 * @category Model
19 * @package Microsoft.Graph
20 * @copyright (c) Microsoft Corporation. All rights reserved.
21 * @license https://opensource.org/licenses/MIT MIT License
22 * @link https://graph.microsoft.com
23 */
24 class WindowsMinimumOperatingSystem extends Entity
25 {
26 /**
27 * Gets the v10_0
28 * Windows version 10.0 or later.
29 *
30 * @return bool|null The v10_0
31 */
32 public function getV10_0()
33 {
34 if (array_key_exists("v100", $this->_propDict)) {
35 return $this->_propDict["v100"];
36 } else {
37 return null;
38 }
39 }
40
41 /**
42 * Sets the v10_0
43 * Windows version 10.0 or later.
44 *
45 * @param bool $val The value of the v10_0
46 *
47 * @return WindowsMinimumOperatingSystem
48 */
49 public function setV10_0($val)
50 {
51 $this->_propDict["v100"] = $val;
52 return $this;
53 }
54 /**
55 * Gets the v8_0
56 * Windows version 8.0 or later.
57 *
58 * @return bool|null The v8_0
59 */
60 public function getV8_0()
61 {
62 if (array_key_exists("v80", $this->_propDict)) {
63 return $this->_propDict["v80"];
64 } else {
65 return null;
66 }
67 }
68
69 /**
70 * Sets the v8_0
71 * Windows version 8.0 or later.
72 *
73 * @param bool $val The value of the v8_0
74 *
75 * @return WindowsMinimumOperatingSystem
76 */
77 public function setV8_0($val)
78 {
79 $this->_propDict["v80"] = $val;
80 return $this;
81 }
82 /**
83 * Gets the v8_1
84 * Windows version 8.1 or later.
85 *
86 * @return bool|null The v8_1
87 */
88 public function getV8_1()
89 {
90 if (array_key_exists("v81", $this->_propDict)) {
91 return $this->_propDict["v81"];
92 } else {
93 return null;
94 }
95 }
96
97 /**
98 * Sets the v8_1
99 * Windows version 8.1 or later.
100 *
101 * @param bool $val The value of the v8_1
102 *
103 * @return WindowsMinimumOperatingSystem
104 */
105 public function setV8_1($val)
106 {
107 $this->_propDict["v81"] = $val;
108 return $this;
109 }
110 }
111