forked from microsoftgraph/msgraph-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArticle.php
More file actions
305 lines (285 loc) · 8.35 KB
/
Copy pathArticle.php
File metadata and controls
305 lines (285 loc) · 8.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* Article 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 Microsoft\Graph\SecurityNamespace\Model;
/**
* Article 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 Article extends \Microsoft\Graph\Model\Entity
{
/**
* Gets the body
* Formatted article contents.
*
* @return FormattedContent|null The body
*/
public function getBody()
{
if (array_key_exists("body", $this->_propDict)) {
if (is_a($this->_propDict["body"], "\Microsoft\Graph\SecurityNamespace\Model\FormattedContent") || is_null($this->_propDict["body"])) {
return $this->_propDict["body"];
} else {
$this->_propDict["body"] = new FormattedContent($this->_propDict["body"]);
return $this->_propDict["body"];
}
}
return null;
}
/**
* Sets the body
* Formatted article contents.
*
* @param FormattedContent $val The body
*
* @return Article
*/
public function setBody($val)
{
$this->_propDict["body"] = $val;
return $this;
}
/**
* Gets the createdDateTime
* The date and time when this article was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
*
* @return \DateTime|null The createdDateTime
*/
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;
}
/**
* Sets the createdDateTime
* The date and time when this article was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
*
* @param \DateTime $val The createdDateTime
*
* @return Article
*/
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
}
/**
* Gets the imageUrl
* URL of the header image for this article, used for display purposes.
*
* @return string|null The imageUrl
*/
public function getImageUrl()
{
if (array_key_exists("imageUrl", $this->_propDict)) {
return $this->_propDict["imageUrl"];
} else {
return null;
}
}
/**
* Sets the imageUrl
* URL of the header image for this article, used for display purposes.
*
* @param string $val The imageUrl
*
* @return Article
*/
public function setImageUrl($val)
{
$this->_propDict["imageUrl"] = $val;
return $this;
}
/**
* Gets the isFeatured
* Indicates whether this article is currently featured by Microsoft.
*
* @return bool|null The isFeatured
*/
public function getIsFeatured()
{
if (array_key_exists("isFeatured", $this->_propDict)) {
return $this->_propDict["isFeatured"];
} else {
return null;
}
}
/**
* Sets the isFeatured
* Indicates whether this article is currently featured by Microsoft.
*
* @param bool $val The isFeatured
*
* @return Article
*/
public function setIsFeatured($val)
{
$this->_propDict["isFeatured"] = boolval($val);
return $this;
}
/**
* Gets the lastUpdatedDateTime
* The most recent date and time when this article was updated. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
*
* @return \DateTime|null The lastUpdatedDateTime
*/
public function getLastUpdatedDateTime()
{
if (array_key_exists("lastUpdatedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastUpdatedDateTime"], "\DateTime") || is_null($this->_propDict["lastUpdatedDateTime"])) {
return $this->_propDict["lastUpdatedDateTime"];
} else {
$this->_propDict["lastUpdatedDateTime"] = new \DateTime($this->_propDict["lastUpdatedDateTime"]);
return $this->_propDict["lastUpdatedDateTime"];
}
}
return null;
}
/**
* Sets the lastUpdatedDateTime
* The most recent date and time when this article was updated. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
*
* @param \DateTime $val The lastUpdatedDateTime
*
* @return Article
*/
public function setLastUpdatedDateTime($val)
{
$this->_propDict["lastUpdatedDateTime"] = $val;
return $this;
}
/**
* Gets the summary
* A quick summary of this article.
*
* @return FormattedContent|null The summary
*/
public function getSummary()
{
if (array_key_exists("summary", $this->_propDict)) {
if (is_a($this->_propDict["summary"], "\Microsoft\Graph\SecurityNamespace\Model\FormattedContent") || is_null($this->_propDict["summary"])) {
return $this->_propDict["summary"];
} else {
$this->_propDict["summary"] = new FormattedContent($this->_propDict["summary"]);
return $this->_propDict["summary"];
}
}
return null;
}
/**
* Sets the summary
* A quick summary of this article.
*
* @param FormattedContent $val The summary
*
* @return Article
*/
public function setSummary($val)
{
$this->_propDict["summary"] = $val;
return $this;
}
/**
* Gets the tags
* Tags for this article, communicating keywords, or key concepts.
*
* @return array|null The tags
*/
public function getTags()
{
if (array_key_exists("tags", $this->_propDict)) {
return $this->_propDict["tags"];
} else {
return null;
}
}
/**
* Sets the tags
* Tags for this article, communicating keywords, or key concepts.
*
* @param string[] $val The tags
*
* @return Article
*/
public function setTags($val)
{
$this->_propDict["tags"] = $val;
return $this;
}
/**
* Gets the title
* The title of this article.
*
* @return string|null The title
*/
public function getTitle()
{
if (array_key_exists("title", $this->_propDict)) {
return $this->_propDict["title"];
} else {
return null;
}
}
/**
* Sets the title
* The title of this article.
*
* @param string $val The title
*
* @return Article
*/
public function setTitle($val)
{
$this->_propDict["title"] = $val;
return $this;
}
/**
* Gets the indicators
* Indicators related to this article.
*
* @return array|null The indicators
*/
public function getIndicators()
{
if (array_key_exists("indicators", $this->_propDict)) {
return $this->_propDict["indicators"];
} else {
return null;
}
}
/**
* Sets the indicators
* Indicators related to this article.
*
* @param ArticleIndicator[] $val The indicators
*
* @return Article
*/
public function setIndicators($val)
{
$this->_propDict["indicators"] = $val;
return $this;
}
}