1
+ <?php
2
+
3
+ /**
4
+ * Generated 2024-02-24T10:21:51+00:00 16.0.24607.12008
5
+ */
6
+ namespace Office365 \SharePoint ;
7
+
8
+ use Office365 \Runtime \ClientObject ;
9
+ use Office365 \Runtime \Actions \DeleteEntityQuery ;
10
+ use Office365 \Runtime \ResourcePath ;
11
+ use Office365 \Runtime \Actions \UpdateEntityQuery ;
12
+ class AppPrincipal extends BaseEntity
13
+ {
14
+ /**
15
+ * The
16
+ * display name of the app principal.
17
+ * @return string
18
+ */
19
+ public function getDisplayName ()
20
+ {
21
+ return $ this ->getProperty ("DisplayName " );
22
+ }
23
+ /**
24
+ * The
25
+ * display name of the app principal.
26
+ * @var string
27
+ */
28
+ public function setDisplayName ($ value )
29
+ {
30
+ return $ this ->setProperty ("DisplayName " , $ value , true );
31
+ }
32
+ /**
33
+ * Accessibility: Read OnlyThe
34
+ * endpoints of the app.The value
35
+ * is a list of hostname[:port].
36
+ * @return array
37
+ */
38
+ public function getEndpointAuthorities ()
39
+ {
40
+ return $ this ->getProperty ("EndpointAuthorities " );
41
+ }
42
+ /**
43
+ * Accessibility: Read OnlyThe
44
+ * endpoints of the app.The value
45
+ * is a list of hostname[:port].
46
+ * @var array
47
+ */
48
+ public function setEndpointAuthorities ($ value )
49
+ {
50
+ return $ this ->setProperty ("EndpointAuthorities " , $ value , true );
51
+ }
52
+ /**
53
+ * The name
54
+ * identifier of the app principal.
55
+ * @return string
56
+ */
57
+ public function getNameIdentifier ()
58
+ {
59
+ return $ this ->getProperty ("NameIdentifier " );
60
+ }
61
+ /**
62
+ * The name
63
+ * identifier of the app principal.
64
+ * @var string
65
+ */
66
+ public function setNameIdentifier ($ value )
67
+ {
68
+ return $ this ->setProperty ("NameIdentifier " , $ value , true );
69
+ }
70
+ /**
71
+ * Accessibility: Read OnlyThe
72
+ * redirect URI associated with the app.The
73
+ * authorization server sends the end user back to the redirect URI once the
74
+ * access is granted or denied.
75
+ * @return array
76
+ */
77
+ public function getRedirectAddresses ()
78
+ {
79
+ return $ this ->getProperty ("RedirectAddresses " );
80
+ }
81
+ /**
82
+ * Accessibility: Read OnlyThe
83
+ * redirect URI associated with the app.The
84
+ * authorization server sends the end user back to the redirect URI once the
85
+ * access is granted or denied.
86
+ * @var array
87
+ */
88
+ public function setRedirectAddresses ($ value )
89
+ {
90
+ return $ this ->setProperty ("RedirectAddresses " , $ value , true );
91
+ }
92
+ }
0 commit comments