Skip to content

Commit 814a852

Browse files
Update generated files with build 1962716 (#249)
1 parent f55cab1 commit 814a852

51 files changed

Lines changed: 4544 additions & 2 deletions

Some content is hidden

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

src/Model/AppHostedMediaConfig.php

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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+
* AppHostedMediaConfig File
6+
* PHP version 7
7+
*
8+
* @category Library
9+
* @package Microsoft.Graph
10+
* @copyright © Microsoft Corporation. All rights reserved.
11+
* @license https://opensource.org/licenses/MIT MIT License
12+
* @version GIT: 1.4.0
13+
* @link https://graph.microsoft.io/
14+
*/
15+
namespace Microsoft\Graph\Model;
16+
/**
17+
* AppHostedMediaConfig class
18+
*
19+
* @category Model
20+
* @package Microsoft.Graph
21+
* @copyright © Microsoft Corporation. All rights reserved.
22+
* @license https://opensource.org/licenses/MIT MIT License
23+
* @version Release: 1.4.0
24+
* @link https://graph.microsoft.io/
25+
*/
26+
class AppHostedMediaConfig extends MediaConfig
27+
{
28+
/**
29+
* Set the @odata.type since this type is immediately descended from an abstract
30+
* type that is referenced as the type in an entity.
31+
*/
32+
public function __construct()
33+
{
34+
$this->setODataType("#microsoft.graph.appHostedMediaConfig");
35+
}
36+
37+
/**
38+
* Gets the blob
39+
*
40+
* @return string The blob
41+
*/
42+
public function getBlob()
43+
{
44+
if (array_key_exists("blob", $this->_propDict)) {
45+
return $this->_propDict["blob"];
46+
} else {
47+
return null;
48+
}
49+
}
50+
51+
/**
52+
* Sets the blob
53+
*
54+
* @param string $val The value of the blob
55+
*
56+
* @return AppHostedMediaConfig
57+
*/
58+
public function setBlob($val)
59+
{
60+
$this->_propDict["blob"] = $val;
61+
return $this;
62+
}
63+
}

src/Model/AudioConferencing.php

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
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+
* AudioConferencing File
6+
* PHP version 7
7+
*
8+
* @category Library
9+
* @package Microsoft.Graph
10+
* @copyright © Microsoft Corporation. All rights reserved.
11+
* @license https://opensource.org/licenses/MIT MIT License
12+
* @version GIT: 1.4.0
13+
* @link https://graph.microsoft.io/
14+
*/
15+
namespace Microsoft\Graph\Model;
16+
/**
17+
* AudioConferencing class
18+
*
19+
* @category Model
20+
* @package Microsoft.Graph
21+
* @copyright © Microsoft Corporation. All rights reserved.
22+
* @license https://opensource.org/licenses/MIT MIT License
23+
* @version Release: 1.4.0
24+
* @link https://graph.microsoft.io/
25+
*/
26+
class AudioConferencing extends Entity
27+
{
28+
/**
29+
* Gets the conferenceId
30+
*
31+
* @return string The conferenceId
32+
*/
33+
public function getConferenceId()
34+
{
35+
if (array_key_exists("conferenceId", $this->_propDict)) {
36+
return $this->_propDict["conferenceId"];
37+
} else {
38+
return null;
39+
}
40+
}
41+
42+
/**
43+
* Sets the conferenceId
44+
*
45+
* @param string $val The value of the conferenceId
46+
*
47+
* @return AudioConferencing
48+
*/
49+
public function setConferenceId($val)
50+
{
51+
$this->_propDict["conferenceId"] = $val;
52+
return $this;
53+
}
54+
/**
55+
* Gets the tollNumber
56+
*
57+
* @return string The tollNumber
58+
*/
59+
public function getTollNumber()
60+
{
61+
if (array_key_exists("tollNumber", $this->_propDict)) {
62+
return $this->_propDict["tollNumber"];
63+
} else {
64+
return null;
65+
}
66+
}
67+
68+
/**
69+
* Sets the tollNumber
70+
*
71+
* @param string $val The value of the tollNumber
72+
*
73+
* @return AudioConferencing
74+
*/
75+
public function setTollNumber($val)
76+
{
77+
$this->_propDict["tollNumber"] = $val;
78+
return $this;
79+
}
80+
/**
81+
* Gets the tollFreeNumber
82+
*
83+
* @return string The tollFreeNumber
84+
*/
85+
public function getTollFreeNumber()
86+
{
87+
if (array_key_exists("tollFreeNumber", $this->_propDict)) {
88+
return $this->_propDict["tollFreeNumber"];
89+
} else {
90+
return null;
91+
}
92+
}
93+
94+
/**
95+
* Sets the tollFreeNumber
96+
*
97+
* @param string $val The value of the tollFreeNumber
98+
*
99+
* @return AudioConferencing
100+
*/
101+
public function setTollFreeNumber($val)
102+
{
103+
$this->_propDict["tollFreeNumber"] = $val;
104+
return $this;
105+
}
106+
/**
107+
* Gets the dialinUrl
108+
*
109+
* @return string The dialinUrl
110+
*/
111+
public function getDialinUrl()
112+
{
113+
if (array_key_exists("dialinUrl", $this->_propDict)) {
114+
return $this->_propDict["dialinUrl"];
115+
} else {
116+
return null;
117+
}
118+
}
119+
120+
/**
121+
* Sets the dialinUrl
122+
*
123+
* @param string $val The value of the dialinUrl
124+
*
125+
* @return AudioConferencing
126+
*/
127+
public function setDialinUrl($val)
128+
{
129+
$this->_propDict["dialinUrl"] = $val;
130+
return $this;
131+
}
132+
}

0 commit comments

Comments
 (0)