You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Model/Application.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -961,7 +961,7 @@ public function setHomeRealmDiscoveryPolicies($val)
961
961
962
962
/**
963
963
* Gets the owners
964
-
* Directory objects that are owners of the application. The owners are a set of non-admin users who are allowed to modify this object. Requires version 2013-11-08 or newer. Read-only. Nullable.
964
+
* Directory objects that are owners of the application. Read-only. Nullable.
965
965
*
966
966
* @return array The owners
967
967
*/
@@ -976,7 +976,7 @@ public function getOwners()
976
976
977
977
/**
978
978
* Sets the owners
979
-
* Directory objects that are owners of the application. The owners are a set of non-admin users who are allowed to modify this object. Requires version 2013-11-08 or newer. Read-only. Nullable.
979
+
* Directory objects that are owners of the application. Read-only. Nullable.
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4
+
*
5
+
* ApplicationTemplate 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
+
namespaceMicrosoft\Graph\Model;
15
+
16
+
/**
17
+
* ApplicationTemplate class
18
+
*
19
+
* @category Model
20
+
* @package Microsoft.Graph
21
+
* @copyright (c) Microsoft Corporation. All rights reserved.
22
+
* @license https://opensource.org/licenses/MIT MIT License
23
+
* @link https://graph.microsoft.com
24
+
*/
25
+
class ApplicationTemplate extends Entity
26
+
{
27
+
/**
28
+
* Gets the categories
29
+
* The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer,Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.
30
+
*
31
+
* @return string The categories
32
+
*/
33
+
publicfunctiongetCategories()
34
+
{
35
+
if (array_key_exists("categories", $this->_propDict)) {
36
+
return$this->_propDict["categories"];
37
+
} else {
38
+
returnnull;
39
+
}
40
+
}
41
+
42
+
/**
43
+
* Sets the categories
44
+
* The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer,Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.
45
+
*
46
+
* @param string $val The categories
47
+
*
48
+
* @return ApplicationTemplate
49
+
*/
50
+
publicfunctionsetCategories($val)
51
+
{
52
+
$this->_propDict["categories"] = $val;
53
+
return$this;
54
+
}
55
+
56
+
/**
57
+
* Gets the description
58
+
* A description of the application.
59
+
*
60
+
* @return string The description
61
+
*/
62
+
publicfunctiongetDescription()
63
+
{
64
+
if (array_key_exists("description", $this->_propDict)) {
65
+
return$this->_propDict["description"];
66
+
} else {
67
+
returnnull;
68
+
}
69
+
}
70
+
71
+
/**
72
+
* Sets the description
73
+
* A description of the application.
74
+
*
75
+
* @param string $val The description
76
+
*
77
+
* @return ApplicationTemplate
78
+
*/
79
+
publicfunctionsetDescription($val)
80
+
{
81
+
$this->_propDict["description"] = $val;
82
+
return$this;
83
+
}
84
+
85
+
/**
86
+
* Gets the displayName
87
+
* The name of the application.
88
+
*
89
+
* @return string The displayName
90
+
*/
91
+
publicfunctiongetDisplayName()
92
+
{
93
+
if (array_key_exists("displayName", $this->_propDict)) {
94
+
return$this->_propDict["displayName"];
95
+
} else {
96
+
returnnull;
97
+
}
98
+
}
99
+
100
+
/**
101
+
* Sets the displayName
102
+
* The name of the application.
103
+
*
104
+
* @param string $val The displayName
105
+
*
106
+
* @return ApplicationTemplate
107
+
*/
108
+
publicfunctionsetDisplayName($val)
109
+
{
110
+
$this->_propDict["displayName"] = $val;
111
+
return$this;
112
+
}
113
+
114
+
/**
115
+
* Gets the homePageUrl
116
+
* The home page URL of the application.
117
+
*
118
+
* @return string The homePageUrl
119
+
*/
120
+
publicfunctiongetHomePageUrl()
121
+
{
122
+
if (array_key_exists("homePageUrl", $this->_propDict)) {
123
+
return$this->_propDict["homePageUrl"];
124
+
} else {
125
+
returnnull;
126
+
}
127
+
}
128
+
129
+
/**
130
+
* Sets the homePageUrl
131
+
* The home page URL of the application.
132
+
*
133
+
* @param string $val The homePageUrl
134
+
*
135
+
* @return ApplicationTemplate
136
+
*/
137
+
publicfunctionsetHomePageUrl($val)
138
+
{
139
+
$this->_propDict["homePageUrl"] = $val;
140
+
return$this;
141
+
}
142
+
143
+
/**
144
+
* Gets the logoUrl
145
+
* The URL to get the logo for this application.
146
+
*
147
+
* @return string The logoUrl
148
+
*/
149
+
publicfunctiongetLogoUrl()
150
+
{
151
+
if (array_key_exists("logoUrl", $this->_propDict)) {
152
+
return$this->_propDict["logoUrl"];
153
+
} else {
154
+
returnnull;
155
+
}
156
+
}
157
+
158
+
/**
159
+
* Sets the logoUrl
160
+
* The URL to get the logo for this application.
161
+
*
162
+
* @param string $val The logoUrl
163
+
*
164
+
* @return ApplicationTemplate
165
+
*/
166
+
publicfunctionsetLogoUrl($val)
167
+
{
168
+
$this->_propDict["logoUrl"] = $val;
169
+
return$this;
170
+
}
171
+
172
+
/**
173
+
* Gets the publisher
174
+
* The name of the publisher for this application.
175
+
*
176
+
* @return string The publisher
177
+
*/
178
+
publicfunctiongetPublisher()
179
+
{
180
+
if (array_key_exists("publisher", $this->_propDict)) {
181
+
return$this->_propDict["publisher"];
182
+
} else {
183
+
returnnull;
184
+
}
185
+
}
186
+
187
+
/**
188
+
* Sets the publisher
189
+
* The name of the publisher for this application.
190
+
*
191
+
* @param string $val The publisher
192
+
*
193
+
* @return ApplicationTemplate
194
+
*/
195
+
publicfunctionsetPublisher($val)
196
+
{
197
+
$this->_propDict["publisher"] = $val;
198
+
return$this;
199
+
}
200
+
201
+
/**
202
+
* Gets the supportedProvisioningTypes
203
+
* The list of provisioning modes supported by this application. The only valid value is sync.
204
+
*
205
+
* @return string The supportedProvisioningTypes
206
+
*/
207
+
publicfunctiongetSupportedProvisioningTypes()
208
+
{
209
+
if (array_key_exists("supportedProvisioningTypes", $this->_propDict)) {
0 commit comments