Skip to content

Commit 1e5d187

Browse files
committed
SharePoint model updated to 16.0.24106.12014 version, a few import fixes
1 parent dd13304 commit 1e5d187

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+23453
-463437
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### About
2-
Office 365 Library for PHP.
3-
A REST/OData based client library for Office 365.
2+
Microsoft 365 Library for PHP.
3+
A REST/OData based client library for Microsoft 365.
44

55

66
### Usage

generator/Settings.SharePoint.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"docsRoot": "https:\/\/docs.microsoft.com\/en-us\/openspecs\/sharepoint_protocols\/ms-csomspt\/",
77
"rootNamespace": "Office365\\SharePoint",
88
"entityRootNamespace": "SP",
9-
"version": "16.0.23207.12006",
10-
"timestamp": "2023-01-15T17:16:42+02:00",
9+
"version": "16.0.24106.12014",
10+
"timestamp": "2023-09-30T09:10:53+00:00",
1111
"placeholder": "Generated ",
1212
"typeMappings": {
1313
"SP.List": "SP.SPList",

generator/metadata/SharePoint.xml

Lines changed: 22313 additions & 463334 deletions
Large diffs are not rendered by default.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
/**
4+
* Generated 2023-09-30T09:13:50+00:00 16.0.24106.12014
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class AdditionalAccessStatusResponse extends ClientValue
10+
{
11+
/**
12+
* @var integer
13+
*/
14+
public $AdditionalAccessRequestStatus;
15+
/**
16+
* @var string
17+
*/
18+
public $ErrorMessage;
19+
/**
20+
* @var integer
21+
*/
22+
public $RoleValue;
23+
/**
24+
* @var integer
25+
*/
26+
public $StatusCode;
27+
}

src/SharePoint/ApprovalRequest.php

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Generated 2023-01-13T18:22:53+02:00 16.0.23207.12005
4+
* Generated 2023-09-30T09:13:50+00:00 16.0.24106.12014
55
*/
66
namespace Office365\SharePoint;
77

@@ -174,4 +174,32 @@ public function setResponses($value)
174174
{
175175
return $this->setProperty("Responses", $value, true);
176176
}
177+
/**
178+
* @return string
179+
*/
180+
public function getPartnerMetadata()
181+
{
182+
return $this->getProperty("PartnerMetadata");
183+
}
184+
/**
185+
* @var string
186+
*/
187+
public function setPartnerMetadata($value)
188+
{
189+
return $this->setProperty("PartnerMetadata", $value, true);
190+
}
191+
/**
192+
* @return integer
193+
*/
194+
public function getPriority()
195+
{
196+
return $this->getProperty("Priority");
197+
}
198+
/**
199+
* @var integer
200+
*/
201+
public function setPriority($value)
202+
{
203+
return $this->setProperty("Priority", $value, true);
204+
}
177205
}

src/SharePoint/Audience.php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
/**
4+
* Generated 2023-09-30T09:13:50+00:00 16.0.24106.12014
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class Audience extends ClientValue
10+
{
11+
/**
12+
* @var string
13+
*/
14+
public $Email;
15+
/**
16+
* @var string
17+
*/
18+
public $Id;
19+
/**
20+
* @var string
21+
*/
22+
public $Title;
23+
}

src/SharePoint/Broker.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
/**
4+
* Generated 2023-09-30T09:13:50+00:00 16.0.24106.12014
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
9+
class Broker extends BaseEntity
10+
{
11+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
/**
4+
* Generated 2023-09-30T09:13:50+00:00 16.0.24106.12014
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class CAAEFieldElement extends ClientValue
10+
{
11+
/**
12+
* @var string
13+
*/
14+
public $Id;
15+
/**
16+
* @var string
17+
*/
18+
public $Version;
19+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
/**
4+
* Generated 2023-09-30T09:13:50+00:00 16.0.24106.12014
5+
*/
6+
namespace Office365\SharePoint;
7+
8+
use Office365\Runtime\ClientValue;
9+
class CAAESnippetElement extends ClientValue
10+
{
11+
/**
12+
* @var string
13+
*/
14+
public $Id;
15+
/**
16+
* @var string
17+
*/
18+
public $Version;
19+
}

src/SharePoint/ClassificationResult.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* Generated 2021-04-23T09:48:37+00:00 16.0.21207.12005
4+
* Generated 2023-09-30T09:13:50+00:00 16.0.24106.12014
55
*/
66
namespace Office365\SharePoint;
77

@@ -44,4 +44,8 @@ class ClassificationResult extends ClientValue
4444
* @var string
4545
*/
4646
public $SensitivityLabel;
47+
/**
48+
* @var string
49+
*/
50+
public $Error;
4751
}

0 commit comments

Comments
 (0)