code
stringlengths
17
296k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
public function setCustomPrivacyAndCookiesUrl($val) { $this->_propDict["customPrivacyAndCookiesUrl"] = $val; return $this; }
Sets the customPrivacyAndCookiesUrl A custom URL to replace the default URL of the 'Privacy and Cookies' hyperlink in the footer. This URL must be in ASCII format or non-ASCII characters must be URL encoded, and not exceed 128 characters. @param string $val The customPrivacyAndCookiesUrl @return OrganizationalBrandingProperties
setCustomPrivacyAndCookiesUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getCustomResetItNowText() { if (array_key_exists("customResetItNowText", $this->_propDict)) { return $this->_propDict["customResetItNowText"]; } else { return null; } }
Gets the customResetItNowText A string to replace the default 'reset it now' hyperlink text on the sign-in form. This text must be in Unicode format and not exceed 256 characters. DO NOT USE: Customization of the 'reset it now' hyperlink text is currently not supported. @return string|null The customResetItNowText
getCustomResetItNowText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setCustomResetItNowText($val) { $this->_propDict["customResetItNowText"] = $val; return $this; }
Sets the customResetItNowText A string to replace the default 'reset it now' hyperlink text on the sign-in form. This text must be in Unicode format and not exceed 256 characters. DO NOT USE: Customization of the 'reset it now' hyperlink text is currently not supported. @param string $val The customResetItNowText @return OrganizationalBrandingProperties
setCustomResetItNowText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getCustomTermsOfUseText() { if (array_key_exists("customTermsOfUseText", $this->_propDict)) { return $this->_propDict["customTermsOfUseText"]; } else { return null; } }
Gets the customTermsOfUseText A string to replace the the default 'Terms of Use' hyperlink text in the footer. This text must be in Unicode format and not exceed 256 characters. @return string|null The customTermsOfUseText
getCustomTermsOfUseText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setCustomTermsOfUseText($val) { $this->_propDict["customTermsOfUseText"] = $val; return $this; }
Sets the customTermsOfUseText A string to replace the the default 'Terms of Use' hyperlink text in the footer. This text must be in Unicode format and not exceed 256 characters. @param string $val The customTermsOfUseText @return OrganizationalBrandingProperties
setCustomTermsOfUseText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getCustomTermsOfUseUrl() { if (array_key_exists("customTermsOfUseUrl", $this->_propDict)) { return $this->_propDict["customTermsOfUseUrl"]; } else { return null; } }
Gets the customTermsOfUseUrl A custom URL to replace the default URL of the 'Terms of Use' hyperlink in the footer. This URL must be in ASCII format or non-ASCII characters must be URL encoded, and not exceed 128characters. @return string|null The customTermsOfUseUrl
getCustomTermsOfUseUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setCustomTermsOfUseUrl($val) { $this->_propDict["customTermsOfUseUrl"] = $val; return $this; }
Sets the customTermsOfUseUrl A custom URL to replace the default URL of the 'Terms of Use' hyperlink in the footer. This URL must be in ASCII format or non-ASCII characters must be URL encoded, and not exceed 128characters. @param string $val The customTermsOfUseUrl @return OrganizationalBrandingProperties
setCustomTermsOfUseUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getFavicon() { if (array_key_exists("favicon", $this->_propDict)) { if (is_a($this->_propDict["favicon"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["favicon"])) { return $this->_propDict["favicon"]; } else { $this->_propDict["favicon"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["favicon"]); return $this->_propDict["favicon"]; } } return null; }
Gets the favicon A custom icon (favicon) to replace a default Microsoft product favicon on an Azure AD tenant. @return \GuzzleHttp\Psr7\Stream|null The favicon
getFavicon
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setFavicon($val) { $this->_propDict["favicon"] = $val; return $this; }
Sets the favicon A custom icon (favicon) to replace a default Microsoft product favicon on an Azure AD tenant. @param \GuzzleHttp\Psr7\Stream $val The favicon @return OrganizationalBrandingProperties
setFavicon
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getFaviconRelativeUrl() { if (array_key_exists("faviconRelativeUrl", $this->_propDict)) { return $this->_propDict["faviconRelativeUrl"]; } else { return null; } }
Gets the faviconRelativeUrl A relative url for the favicon above that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. @return string|null The faviconRelativeUrl
getFaviconRelativeUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setFaviconRelativeUrl($val) { $this->_propDict["faviconRelativeUrl"] = $val; return $this; }
Sets the faviconRelativeUrl A relative url for the favicon above that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. @param string $val The faviconRelativeUrl @return OrganizationalBrandingProperties
setFaviconRelativeUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getHeaderBackgroundColor() { if (array_key_exists("headerBackgroundColor", $this->_propDict)) { return $this->_propDict["headerBackgroundColor"]; } else { return null; } }
Gets the headerBackgroundColor The RGB color to apply to customize the color of the header. @return string|null The headerBackgroundColor
getHeaderBackgroundColor
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setHeaderBackgroundColor($val) { $this->_propDict["headerBackgroundColor"] = $val; return $this; }
Sets the headerBackgroundColor The RGB color to apply to customize the color of the header. @param string $val The headerBackgroundColor @return OrganizationalBrandingProperties
setHeaderBackgroundColor
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getHeaderLogo() { if (array_key_exists("headerLogo", $this->_propDict)) { if (is_a($this->_propDict["headerLogo"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["headerLogo"])) { return $this->_propDict["headerLogo"]; } else { $this->_propDict["headerLogo"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["headerLogo"]); return $this->_propDict["headerLogo"]; } } return null; }
Gets the headerLogo A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. @return \GuzzleHttp\Psr7\Stream|null The headerLogo
getHeaderLogo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setHeaderLogo($val) { $this->_propDict["headerLogo"] = $val; return $this; }
Sets the headerLogo A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. @param \GuzzleHttp\Psr7\Stream $val The headerLogo @return OrganizationalBrandingProperties
setHeaderLogo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getHeaderLogoRelativeUrl() { if (array_key_exists("headerLogoRelativeUrl", $this->_propDict)) { return $this->_propDict["headerLogoRelativeUrl"]; } else { return null; } }
Gets the headerLogoRelativeUrl A relative URL for the headerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. @return string|null The headerLogoRelativeUrl
getHeaderLogoRelativeUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setHeaderLogoRelativeUrl($val) { $this->_propDict["headerLogoRelativeUrl"] = $val; return $this; }
Sets the headerLogoRelativeUrl A relative URL for the headerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. @param string $val The headerLogoRelativeUrl @return OrganizationalBrandingProperties
setHeaderLogoRelativeUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getLoginPageLayoutConfiguration() { if (array_key_exists("loginPageLayoutConfiguration", $this->_propDict)) { if (is_a($this->_propDict["loginPageLayoutConfiguration"], "\Beta\Microsoft\Graph\Model\LoginPageLayoutConfiguration") || is_null($this->_propDict["loginPageLayoutConfiguration"])) { return $this->_propDict["loginPageLayoutConfiguration"]; } else { $this->_propDict["loginPageLayoutConfiguration"] = new LoginPageLayoutConfiguration($this->_propDict["loginPageLayoutConfiguration"]); return $this->_propDict["loginPageLayoutConfiguration"]; } } return null; }
Gets the loginPageLayoutConfiguration Represents the layout configuration to be displayed on the login page for a tenant. @return LoginPageLayoutConfiguration|null The loginPageLayoutConfiguration
getLoginPageLayoutConfiguration
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setLoginPageLayoutConfiguration($val) { $this->_propDict["loginPageLayoutConfiguration"] = $val; return $this; }
Sets the loginPageLayoutConfiguration Represents the layout configuration to be displayed on the login page for a tenant. @param LoginPageLayoutConfiguration $val The loginPageLayoutConfiguration @return OrganizationalBrandingProperties
setLoginPageLayoutConfiguration
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getLoginPageTextVisibilitySettings() { if (array_key_exists("loginPageTextVisibilitySettings", $this->_propDict)) { if (is_a($this->_propDict["loginPageTextVisibilitySettings"], "\Beta\Microsoft\Graph\Model\LoginPageTextVisibilitySettings") || is_null($this->_propDict["loginPageTextVisibilitySettings"])) { return $this->_propDict["loginPageTextVisibilitySettings"]; } else { $this->_propDict["loginPageTextVisibilitySettings"] = new LoginPageTextVisibilitySettings($this->_propDict["loginPageTextVisibilitySettings"]); return $this->_propDict["loginPageTextVisibilitySettings"]; } } return null; }
Gets the loginPageTextVisibilitySettings Represents the various texts that can be hidden on the login page for a tenant. @return LoginPageTextVisibilitySettings|null The loginPageTextVisibilitySettings
getLoginPageTextVisibilitySettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setLoginPageTextVisibilitySettings($val) { $this->_propDict["loginPageTextVisibilitySettings"] = $val; return $this; }
Sets the loginPageTextVisibilitySettings Represents the various texts that can be hidden on the login page for a tenant. @param LoginPageTextVisibilitySettings $val The loginPageTextVisibilitySettings @return OrganizationalBrandingProperties
setLoginPageTextVisibilitySettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getSignInPageText() { if (array_key_exists("signInPageText", $this->_propDict)) { return $this->_propDict["signInPageText"]; } else { return null; } }
Gets the signInPageText Text that appears at the bottom of the sign-in box. Use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be in Unicode format and not exceed 1024 characters. @return string|null The signInPageText
getSignInPageText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setSignInPageText($val) { $this->_propDict["signInPageText"] = $val; return $this; }
Sets the signInPageText Text that appears at the bottom of the sign-in box. Use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be in Unicode format and not exceed 1024 characters. @param string $val The signInPageText @return OrganizationalBrandingProperties
setSignInPageText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getSquareLogo() { if (array_key_exists("squareLogo", $this->_propDict)) { if (is_a($this->_propDict["squareLogo"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["squareLogo"])) { return $this->_propDict["squareLogo"]; } else { $this->_propDict["squareLogo"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["squareLogo"]); return $this->_propDict["squareLogo"]; } } return null; }
Gets the squareLogo A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. @return \GuzzleHttp\Psr7\Stream|null The squareLogo
getSquareLogo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setSquareLogo($val) { $this->_propDict["squareLogo"] = $val; return $this; }
Sets the squareLogo A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. @param \GuzzleHttp\Psr7\Stream $val The squareLogo @return OrganizationalBrandingProperties
setSquareLogo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getSquareLogoDark() { if (array_key_exists("squareLogoDark", $this->_propDict)) { if (is_a($this->_propDict["squareLogoDark"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["squareLogoDark"])) { return $this->_propDict["squareLogoDark"]; } else { $this->_propDict["squareLogoDark"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["squareLogoDark"]); return $this->_propDict["squareLogoDark"]; } } return null; }
Gets the squareLogoDark A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. @return \GuzzleHttp\Psr7\Stream|null The squareLogoDark
getSquareLogoDark
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setSquareLogoDark($val) { $this->_propDict["squareLogoDark"] = $val; return $this; }
Sets the squareLogoDark A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. @param \GuzzleHttp\Psr7\Stream $val The squareLogoDark @return OrganizationalBrandingProperties
setSquareLogoDark
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getSquareLogoDarkRelativeUrl() { if (array_key_exists("squareLogoDarkRelativeUrl", $this->_propDict)) { return $this->_propDict["squareLogoDarkRelativeUrl"]; } else { return null; } }
Gets the squareLogoDarkRelativeUrl A relative URL for the squareLogoDark property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. @return string|null The squareLogoDarkRelativeUrl
getSquareLogoDarkRelativeUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setSquareLogoDarkRelativeUrl($val) { $this->_propDict["squareLogoDarkRelativeUrl"] = $val; return $this; }
Sets the squareLogoDarkRelativeUrl A relative URL for the squareLogoDark property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. @param string $val The squareLogoDarkRelativeUrl @return OrganizationalBrandingProperties
setSquareLogoDarkRelativeUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getSquareLogoRelativeUrl() { if (array_key_exists("squareLogoRelativeUrl", $this->_propDict)) { return $this->_propDict["squareLogoRelativeUrl"]; } else { return null; } }
Gets the squareLogoRelativeUrl A relative URL for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. @return string|null The squareLogoRelativeUrl
getSquareLogoRelativeUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setSquareLogoRelativeUrl($val) { $this->_propDict["squareLogoRelativeUrl"] = $val; return $this; }
Sets the squareLogoRelativeUrl A relative URL for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. @param string $val The squareLogoRelativeUrl @return OrganizationalBrandingProperties
setSquareLogoRelativeUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function getUsernameHintText() { if (array_key_exists("usernameHintText", $this->_propDict)) { return $this->_propDict["usernameHintText"]; } else { return null; } }
Gets the usernameHintText A string that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. @return string|null The usernameHintText
getUsernameHintText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public function setUsernameHintText($val) { $this->_propDict["usernameHintText"] = $val; return $this; }
Sets the usernameHintText A string that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. @param string $val The usernameHintText @return OrganizationalBrandingProperties
setUsernameHintText
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizationalBrandingProperties.php
MIT
public static function parseDateTime($dt, DateTimeZone $tz = null) { // Format is YYYYMMDD + "T" + hhmmss $result = preg_match('/^([0-9]{4})([0-1][0-9])([0-3][0-9])T([0-2][0-9])([0-5][0-9])([0-5][0-9])([Z]?)$/', $dt, $matches); if (!$result) { throw new InvalidDataException('The supplied iCalendar datetime value is incorrect: '.$dt); } if ('Z' === $matches[7] || is_null($tz)) { $tz = new DateTimeZone('UTC'); } try { $date = new DateTimeImmutable($matches[1].'-'.$matches[2].'-'.$matches[3].' '.$matches[4].':'.$matches[5].':'.$matches[6], $tz); } catch (\Exception $e) { throw new InvalidDataException('The supplied iCalendar datetime value is incorrect: '.$dt); } return $date; }
Parses an iCalendar (rfc5545) formatted datetime and returns a DateTimeImmutable object. Specifying a reference timezone is optional. It will only be used if the non-UTC format is used. The argument is used as a reference, the returned DateTimeImmutable object will still be in the UTC timezone. @param string $dt @param DateTimeZone $tz @return DateTimeImmutable
parseDateTime
php
xiebruce/PicUploader
vendor/sabre/vobject/lib/DateTimeParser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/DateTimeParser.php
MIT
public static function parseDate($date, DateTimeZone $tz = null) { // Format is YYYYMMDD $result = preg_match('/^([0-9]{4})([0-1][0-9])([0-3][0-9])$/', $date, $matches); if (!$result) { throw new InvalidDataException('The supplied iCalendar date value is incorrect: '.$date); } if (is_null($tz)) { $tz = new DateTimeZone('UTC'); } try { $date = new DateTimeImmutable($matches[1].'-'.$matches[2].'-'.$matches[3], $tz); } catch (\Exception $e) { throw new InvalidDataException('The supplied iCalendar date value is incorrect: '.$date); } return $date; }
Parses an iCalendar (rfc5545) formatted date and returns a DateTimeImmutable object. @param string $date @param DateTimeZone $tz @return DateTimeImmutable
parseDate
php
xiebruce/PicUploader
vendor/sabre/vobject/lib/DateTimeParser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/DateTimeParser.php
MIT
public static function parseVCardDateTime($date) { $regex = '/^ (?: # date part (?: (?: (?<year> [0-9]{4}) (?: -)?| --) (?<month> [0-9]{2})? |---) (?<date> [0-9]{2})? )? (?:T # time part (?<hour> [0-9]{2} | -) (?<minute> [0-9]{2} | -)? (?<second> [0-9]{2})? (?: \.[0-9]{3})? # milliseconds (?P<timezone> # timezone offset Z | (?: \+|-)(?: [0-9]{4}) )? )? $/x'; if (!preg_match($regex, $date, $matches)) { // Attempting to parse the extended format. $regex = '/^ (?: # date part (?: (?<year> [0-9]{4}) - | -- ) (?<month> [0-9]{2}) - (?<date> [0-9]{2}) )? (?:T # time part (?: (?<hour> [0-9]{2}) : | -) (?: (?<minute> [0-9]{2}) : | -)? (?<second> [0-9]{2})? (?: \.[0-9]{3})? # milliseconds (?P<timezone> # timezone offset Z | (?: \+|-)(?: [0-9]{2}:[0-9]{2}) )? )? $/x'; if (!preg_match($regex, $date, $matches)) { throw new InvalidDataException('Invalid vCard date-time string: '.$date); } } $parts = [ 'year', 'month', 'date', 'hour', 'minute', 'second', 'timezone', ]; $result = []; foreach ($parts as $part) { if (empty($matches[$part])) { $result[$part] = null; } elseif ('-' === $matches[$part] || '--' === $matches[$part]) { $result[$part] = null; } else { $result[$part] = $matches[$part]; } } return $result; }
This method parses a vCard date and or time value. This can be used for the DATE, DATE-TIME, TIMESTAMP and DATE-AND-OR-TIME value. This method returns an array, not a DateTime value. The elements in the array are in the following order: year, month, date, hour, minute, second, timezone Almost any part of the string may be omitted. It's for example legal to just specify seconds, leave out the year, etc. Timezone is either returned as 'Z' or as '+0800' For any non-specified values null is returned. List of date formats that are supported: YYYY YYYY-MM YYYYMMDD --MMDD ---DD YYYY-MM-DD --MM-DD ---DD List of supported time formats: HH HHMM HHMMSS -MMSS --SS HH HH:MM HH:MM:SS -MM:SS --SS A full basic-format date-time string looks like : 20130603T133901 A full extended-format date-time string looks like : 2013-06-03T13:39:01 Times may be postfixed by a timezone offset. This can be either 'Z' for UTC, or a string like -0500 or +1100. @param string $date @return array
parseVCardDateTime
php
xiebruce/PicUploader
vendor/sabre/vobject/lib/DateTimeParser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/DateTimeParser.php
MIT
public static function parseVCardTime($date) { $regex = '/^ (?<hour> [0-9]{2} | -) (?<minute> [0-9]{2} | -)? (?<second> [0-9]{2})? (?: \.[0-9]{3})? # milliseconds (?P<timezone> # timezone offset Z | (?: \+|-)(?: [0-9]{4}) )? $/x'; if (!preg_match($regex, $date, $matches)) { // Attempting to parse the extended format. $regex = '/^ (?: (?<hour> [0-9]{2}) : | -) (?: (?<minute> [0-9]{2}) : | -)? (?<second> [0-9]{2})? (?: \.[0-9]{3})? # milliseconds (?P<timezone> # timezone offset Z | (?: \+|-)(?: [0-9]{2}:[0-9]{2}) )? $/x'; if (!preg_match($regex, $date, $matches)) { throw new InvalidDataException('Invalid vCard time string: '.$date); } } $parts = [ 'hour', 'minute', 'second', 'timezone', ]; $result = []; foreach ($parts as $part) { if (empty($matches[$part])) { $result[$part] = null; } elseif ('-' === $matches[$part]) { $result[$part] = null; } else { $result[$part] = $matches[$part]; } } return $result; }
This method parses a vCard TIME value. This method returns an array, not a DateTime value. The elements in the array are in the following order: hour, minute, second, timezone Almost any part of the string may be omitted. It's for example legal to just specify seconds, leave out the hour etc. Timezone is either returned as 'Z' or as '+08:00' For any non-specified values null is returned. List of supported time formats: HH HHMM HHMMSS -MMSS --SS HH HH:MM HH:MM:SS -MM:SS --SS A full basic-format time string looks like : 133901 A full extended-format time string looks like : 13:39:01 Times may be postfixed by a timezone offset. This can be either 'Z' for UTC, or a string like -0500 or +11:00. @param string $date @return array
parseVCardTime
php
xiebruce/PicUploader
vendor/sabre/vobject/lib/DateTimeParser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/DateTimeParser.php
MIT
public static function parseVCardDateAndOrTime($date) { // \d{8}|\d{4}-\d\d|--\d\d(\d\d)?|---\d\d $valueDate = '/^(?J)(?:'. '(?<year>\d{4})(?<month>\d\d)(?<date>\d\d)'. '|(?<year>\d{4})-(?<month>\d\d)'. '|--(?<month>\d\d)(?<date>\d\d)?'. '|---(?<date>\d\d)'. ')$/'; // (\d\d(\d\d(\d\d)?)?|-\d\d(\d\d)?|--\d\d)(Z|[+\-]\d\d(\d\d)?)? $valueTime = '/^(?J)(?:'. '((?<hour>\d\d)((?<minute>\d\d)(?<second>\d\d)?)?'. '|-(?<minute>\d\d)(?<second>\d\d)?'. '|--(?<second>\d\d))'. '(?<timezone>(Z|[+\-]\d\d(\d\d)?))?'. ')$/'; // (\d{8}|--\d{4}|---\d\d)T\d\d(\d\d(\d\d)?)?(Z|[+\-]\d\d(\d\d?)? $valueDateTime = '/^(?:'. '((?<year0>\d{4})(?<month0>\d\d)(?<date0>\d\d)'. '|--(?<month1>\d\d)(?<date1>\d\d)'. '|---(?<date2>\d\d))'. 'T'. '(?<hour>\d\d)((?<minute>\d\d)(?<second>\d\d)?)?'. '(?<timezone>(Z|[+\-]\d\d(\d\d?)))?'. ')$/'; // date-and-or-time is date | date-time | time // in this strict order. if (0 === preg_match($valueDate, $date, $matches) && 0 === preg_match($valueDateTime, $date, $matches) && 0 === preg_match($valueTime, $date, $matches)) { throw new InvalidDataException('Invalid vCard date-time string: '.$date); } $parts = [ 'year' => null, 'month' => null, 'date' => null, 'hour' => null, 'minute' => null, 'second' => null, 'timezone' => null, ]; // The $valueDateTime expression has a bug with (?J) so we simulate it. $parts['date0'] = &$parts['date']; $parts['date1'] = &$parts['date']; $parts['date2'] = &$parts['date']; $parts['month0'] = &$parts['month']; $parts['month1'] = &$parts['month']; $parts['year0'] = &$parts['year']; foreach ($parts as $part => &$value) { if (!empty($matches[$part])) { $value = $matches[$part]; } } unset($parts['date0']); unset($parts['date1']); unset($parts['date2']); unset($parts['month0']); unset($parts['month1']); unset($parts['year0']); return $parts; }
This method parses a vCard date and or time value. This can be used for the DATE, DATE-TIME and DATE-AND-OR-TIME value. This method returns an array, not a DateTime value. The elements in the array are in the following order: year, month, date, hour, minute, second, timezone Almost any part of the string may be omitted. It's for example legal to just specify seconds, leave out the year, etc. Timezone is either returned as 'Z' or as '+0800' For any non-specified values null is returned. List of date formats that are supported: 20150128 2015-01 --01 --0128 ---28 List of supported time formats: 13 1353 135301 -53 -5301 --01 (unreachable, see the tests) --01Z --01+1234 List of supported date-time formats: 20150128T13 --0128T13 ---28T13 ---28T1353 ---28T135301 ---28T13Z ---28T13+1234 See the regular expressions for all the possible patterns. Times may be postfixed by a timezone offset. This can be either 'Z' for UTC, or a string like -0500 or +1100. @param string $date @return array
parseVCardDateAndOrTime
php
xiebruce/PicUploader
vendor/sabre/vobject/lib/DateTimeParser.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/DateTimeParser.php
MIT
public function getAppIdentifier() { if (array_key_exists("appIdentifier", $this->_propDict)) { return $this->_propDict["appIdentifier"]; } else { return null; } }
Gets the appIdentifier The Identity Name. @return string|null The appIdentifier
getAppIdentifier
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
MIT
public function setAppIdentifier($val) { $this->_propDict["appIdentifier"] = $val; return $this; }
Sets the appIdentifier The Identity Name. @param string $val The appIdentifier @return AndroidStoreApp
setAppIdentifier
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
MIT
public function getAppStoreUrl() { if (array_key_exists("appStoreUrl", $this->_propDict)) { return $this->_propDict["appStoreUrl"]; } else { return null; } }
Gets the appStoreUrl The Android app store URL. @return string|null The appStoreUrl
getAppStoreUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
MIT
public function setAppStoreUrl($val) { $this->_propDict["appStoreUrl"] = $val; return $this; }
Sets the appStoreUrl The Android app store URL. @param string $val The appStoreUrl @return AndroidStoreApp
setAppStoreUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
MIT
public function getMinimumSupportedOperatingSystem() { if (array_key_exists("minimumSupportedOperatingSystem", $this->_propDict)) { if (is_a($this->_propDict["minimumSupportedOperatingSystem"], "\Beta\Microsoft\Graph\Model\AndroidMinimumOperatingSystem") || is_null($this->_propDict["minimumSupportedOperatingSystem"])) { return $this->_propDict["minimumSupportedOperatingSystem"]; } else { $this->_propDict["minimumSupportedOperatingSystem"] = new AndroidMinimumOperatingSystem($this->_propDict["minimumSupportedOperatingSystem"]); return $this->_propDict["minimumSupportedOperatingSystem"]; } } return null; }
Gets the minimumSupportedOperatingSystem The value for the minimum applicable operating system. @return AndroidMinimumOperatingSystem|null The minimumSupportedOperatingSystem
getMinimumSupportedOperatingSystem
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
MIT
public function setMinimumSupportedOperatingSystem($val) { $this->_propDict["minimumSupportedOperatingSystem"] = $val; return $this; }
Sets the minimumSupportedOperatingSystem The value for the minimum applicable operating system. @param AndroidMinimumOperatingSystem $val The minimumSupportedOperatingSystem @return AndroidStoreApp
setMinimumSupportedOperatingSystem
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
MIT
public function getPackageId() { if (array_key_exists("packageId", $this->_propDict)) { return $this->_propDict["packageId"]; } else { return null; } }
Gets the packageId The package identifier. @return string|null The packageId
getPackageId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
MIT
public function setPackageId($val) { $this->_propDict["packageId"] = $val; return $this; }
Sets the packageId The package identifier. @param string $val The packageId @return AndroidStoreApp
setPackageId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidStoreApp.php
MIT
public function getCcRecipients() { if (array_key_exists("ccRecipients", $this->_propDict)) { if (is_a($this->_propDict["ccRecipients"], "\Beta\Microsoft\Graph\Model\Recipient") || is_null($this->_propDict["ccRecipients"])) { return $this->_propDict["ccRecipients"]; } else { $this->_propDict["ccRecipients"] = new Recipient($this->_propDict["ccRecipients"]); return $this->_propDict["ccRecipients"]; } } return null; }
Gets the ccRecipients Additional recipients the invitation message should be sent to. Currently only 1 additional recipient is supported. @return Recipient|null The ccRecipients
getCcRecipients
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
MIT
public function setCcRecipients($val) { $this->_propDict["ccRecipients"] = $val; return $this; }
Sets the ccRecipients Additional recipients the invitation message should be sent to. Currently only 1 additional recipient is supported. @param Recipient $val The value to assign to the ccRecipients @return InvitedUserMessageInfo The InvitedUserMessageInfo
setCcRecipients
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
MIT
public function getCustomizedMessageBody() { if (array_key_exists("customizedMessageBody", $this->_propDict)) { return $this->_propDict["customizedMessageBody"]; } else { return null; } }
Gets the customizedMessageBody Customized message body you want to send if you don't want the default message. @return string|null The customizedMessageBody
getCustomizedMessageBody
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
MIT
public function setCustomizedMessageBody($val) { $this->_propDict["customizedMessageBody"] = $val; return $this; }
Sets the customizedMessageBody Customized message body you want to send if you don't want the default message. @param string $val The value of the customizedMessageBody @return InvitedUserMessageInfo
setCustomizedMessageBody
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
MIT
public function getMessageLanguage() { if (array_key_exists("messageLanguage", $this->_propDict)) { return $this->_propDict["messageLanguage"]; } else { return null; } }
Gets the messageLanguage The language you want to send the default message in. If the customizedMessageBody is specified, this property is ignored, and the message is sent using the customizedMessageBody. The language format should be in ISO 639. The default is en-US. @return string|null The messageLanguage
getMessageLanguage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
MIT
public function setMessageLanguage($val) { $this->_propDict["messageLanguage"] = $val; return $this; }
Sets the messageLanguage The language you want to send the default message in. If the customizedMessageBody is specified, this property is ignored, and the message is sent using the customizedMessageBody. The language format should be in ISO 639. The default is en-US. @param string $val The value of the messageLanguage @return InvitedUserMessageInfo
setMessageLanguage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InvitedUserMessageInfo.php
MIT
public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } }
Gets the description The description of the program. @return string|null The description
getDescription
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
MIT
public function setDescription($val) { $this->_propDict["description"] = $val; return $this; }
Sets the description The description of the program. @param string $val The description @return Program
setDescription
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
MIT
public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } }
Gets the displayName The name of the program. Required on create. @return string|null The displayName
getDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
MIT
public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; }
Sets the displayName The name of the program. Required on create. @param string $val The displayName @return Program
setDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
MIT
public function getControls() { if (array_key_exists("controls", $this->_propDict)) { return $this->_propDict["controls"]; } else { return null; } }
Gets the controls Controls associated with the program. @return array|null The controls
getControls
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
MIT
public function setControls($val) { $this->_propDict["controls"] = $val; return $this; }
Sets the controls Controls associated with the program. @param ProgramControl[] $val The controls @return Program
setControls
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Program.php
MIT
public function getAllowAttendeeToEnableCamera() { if (array_key_exists("allowAttendeeToEnableCamera", $this->_propDict)) { return $this->_propDict["allowAttendeeToEnableCamera"]; } else { return null; } }
Gets the allowAttendeeToEnableCamera Indicates whether attendees can turn on their camera. @return bool|null The allowAttendeeToEnableCamera
getAllowAttendeeToEnableCamera
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAllowAttendeeToEnableCamera($val) { $this->_propDict["allowAttendeeToEnableCamera"] = boolval($val); return $this; }
Sets the allowAttendeeToEnableCamera Indicates whether attendees can turn on their camera. @param bool $val The allowAttendeeToEnableCamera @return OnlineMeeting
setAllowAttendeeToEnableCamera
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAllowAttendeeToEnableMic() { if (array_key_exists("allowAttendeeToEnableMic", $this->_propDict)) { return $this->_propDict["allowAttendeeToEnableMic"]; } else { return null; } }
Gets the allowAttendeeToEnableMic Indicates whether attendees can turn on their microphone. @return bool|null The allowAttendeeToEnableMic
getAllowAttendeeToEnableMic
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAllowAttendeeToEnableMic($val) { $this->_propDict["allowAttendeeToEnableMic"] = boolval($val); return $this; }
Sets the allowAttendeeToEnableMic Indicates whether attendees can turn on their microphone. @param bool $val The allowAttendeeToEnableMic @return OnlineMeeting
setAllowAttendeeToEnableMic
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAllowedPresenters() { if (array_key_exists("allowedPresenters", $this->_propDict)) { if (is_a($this->_propDict["allowedPresenters"], "\Beta\Microsoft\Graph\Model\OnlineMeetingPresenters") || is_null($this->_propDict["allowedPresenters"])) { return $this->_propDict["allowedPresenters"]; } else { $this->_propDict["allowedPresenters"] = new OnlineMeetingPresenters($this->_propDict["allowedPresenters"]); return $this->_propDict["allowedPresenters"]; } } return null; }
Gets the allowedPresenters Specifies who can be a presenter in a meeting. @return OnlineMeetingPresenters|null The allowedPresenters
getAllowedPresenters
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAllowedPresenters($val) { $this->_propDict["allowedPresenters"] = $val; return $this; }
Sets the allowedPresenters Specifies who can be a presenter in a meeting. @param OnlineMeetingPresenters $val The allowedPresenters @return OnlineMeeting
setAllowedPresenters
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAllowMeetingChat() { if (array_key_exists("allowMeetingChat", $this->_propDict)) { if (is_a($this->_propDict["allowMeetingChat"], "\Beta\Microsoft\Graph\Model\MeetingChatMode") || is_null($this->_propDict["allowMeetingChat"])) { return $this->_propDict["allowMeetingChat"]; } else { $this->_propDict["allowMeetingChat"] = new MeetingChatMode($this->_propDict["allowMeetingChat"]); return $this->_propDict["allowMeetingChat"]; } } return null; }
Gets the allowMeetingChat Specifies the mode of meeting chat. @return MeetingChatMode|null The allowMeetingChat
getAllowMeetingChat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAllowMeetingChat($val) { $this->_propDict["allowMeetingChat"] = $val; return $this; }
Sets the allowMeetingChat Specifies the mode of meeting chat. @param MeetingChatMode $val The allowMeetingChat @return OnlineMeeting
setAllowMeetingChat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAllowParticipantsToChangeName() { if (array_key_exists("allowParticipantsToChangeName", $this->_propDict)) { return $this->_propDict["allowParticipantsToChangeName"]; } else { return null; } }
Gets the allowParticipantsToChangeName Specifies if participants are allowed to rename themselves in an instance of the meeting. @return bool|null The allowParticipantsToChangeName
getAllowParticipantsToChangeName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAllowParticipantsToChangeName($val) { $this->_propDict["allowParticipantsToChangeName"] = boolval($val); return $this; }
Sets the allowParticipantsToChangeName Specifies if participants are allowed to rename themselves in an instance of the meeting. @param bool $val The allowParticipantsToChangeName @return OnlineMeeting
setAllowParticipantsToChangeName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAllowTeamworkReactions() { if (array_key_exists("allowTeamworkReactions", $this->_propDict)) { return $this->_propDict["allowTeamworkReactions"]; } else { return null; } }
Gets the allowTeamworkReactions Indicates if Teams reactions are enabled for the meeting. @return bool|null The allowTeamworkReactions
getAllowTeamworkReactions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAllowTeamworkReactions($val) { $this->_propDict["allowTeamworkReactions"] = boolval($val); return $this; }
Sets the allowTeamworkReactions Indicates if Teams reactions are enabled for the meeting. @param bool $val The allowTeamworkReactions @return OnlineMeeting
setAllowTeamworkReactions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAlternativeRecording() { if (array_key_exists("alternativeRecording", $this->_propDict)) { if (is_a($this->_propDict["alternativeRecording"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["alternativeRecording"])) { return $this->_propDict["alternativeRecording"]; } else { $this->_propDict["alternativeRecording"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["alternativeRecording"]); return $this->_propDict["alternativeRecording"]; } } return null; }
Gets the alternativeRecording The content stream of the alternative recording of a Microsoft Teams live event. Read-only. @return \GuzzleHttp\Psr7\Stream|null The alternativeRecording
getAlternativeRecording
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAlternativeRecording($val) { $this->_propDict["alternativeRecording"] = $val; return $this; }
Sets the alternativeRecording The content stream of the alternative recording of a Microsoft Teams live event. Read-only. @param \GuzzleHttp\Psr7\Stream $val The alternativeRecording @return OnlineMeeting
setAlternativeRecording
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAnonymizeIdentityForRoles() { if (array_key_exists("anonymizeIdentityForRoles", $this->_propDict)) { return $this->_propDict["anonymizeIdentityForRoles"]; } else { return null; } }
Gets the anonymizeIdentityForRoles @return array|null The anonymizeIdentityForRoles
getAnonymizeIdentityForRoles
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAnonymizeIdentityForRoles($val) { $this->_propDict["anonymizeIdentityForRoles"] = $val; return $this; }
Sets the anonymizeIdentityForRoles @param OnlineMeetingRole[] $val The anonymizeIdentityForRoles @return OnlineMeeting
setAnonymizeIdentityForRoles
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAttendeeReport() { if (array_key_exists("attendeeReport", $this->_propDict)) { if (is_a($this->_propDict["attendeeReport"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["attendeeReport"])) { return $this->_propDict["attendeeReport"]; } else { $this->_propDict["attendeeReport"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["attendeeReport"]); return $this->_propDict["attendeeReport"]; } } return null; }
Gets the attendeeReport The content stream of the attendee report of a Teams live event. Read-only. @return \GuzzleHttp\Psr7\Stream|null The attendeeReport
getAttendeeReport
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAttendeeReport($val) { $this->_propDict["attendeeReport"] = $val; return $this; }
Sets the attendeeReport The content stream of the attendee report of a Teams live event. Read-only. @param \GuzzleHttp\Psr7\Stream $val The attendeeReport @return OnlineMeeting
setAttendeeReport
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getAudioConferencing() { if (array_key_exists("audioConferencing", $this->_propDict)) { if (is_a($this->_propDict["audioConferencing"], "\Beta\Microsoft\Graph\Model\AudioConferencing") || is_null($this->_propDict["audioConferencing"])) { return $this->_propDict["audioConferencing"]; } else { $this->_propDict["audioConferencing"] = new AudioConferencing($this->_propDict["audioConferencing"]); return $this->_propDict["audioConferencing"]; } } return null; }
Gets the audioConferencing The phone access (dial-in) information for an online meeting. Read-only. @return AudioConferencing|null The audioConferencing
getAudioConferencing
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setAudioConferencing($val) { $this->_propDict["audioConferencing"] = $val; return $this; }
Sets the audioConferencing The phone access (dial-in) information for an online meeting. Read-only. @param AudioConferencing $val The audioConferencing @return OnlineMeeting
setAudioConferencing
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getBroadcastSettings() { if (array_key_exists("broadcastSettings", $this->_propDict)) { if (is_a($this->_propDict["broadcastSettings"], "\Beta\Microsoft\Graph\Model\BroadcastMeetingSettings") || is_null($this->_propDict["broadcastSettings"])) { return $this->_propDict["broadcastSettings"]; } else { $this->_propDict["broadcastSettings"] = new BroadcastMeetingSettings($this->_propDict["broadcastSettings"]); return $this->_propDict["broadcastSettings"]; } } return null; }
Gets the broadcastSettings Settings related to a live event. @return BroadcastMeetingSettings|null The broadcastSettings
getBroadcastSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setBroadcastSettings($val) { $this->_propDict["broadcastSettings"] = $val; return $this; }
Sets the broadcastSettings Settings related to a live event. @param BroadcastMeetingSettings $val The broadcastSettings @return OnlineMeeting
setBroadcastSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getChatInfo() { if (array_key_exists("chatInfo", $this->_propDict)) { if (is_a($this->_propDict["chatInfo"], "\Beta\Microsoft\Graph\Model\ChatInfo") || is_null($this->_propDict["chatInfo"])) { return $this->_propDict["chatInfo"]; } else { $this->_propDict["chatInfo"] = new ChatInfo($this->_propDict["chatInfo"]); return $this->_propDict["chatInfo"]; } } return null; }
Gets the chatInfo The chat information associated with this online meeting. @return ChatInfo|null The chatInfo
getChatInfo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setChatInfo($val) { $this->_propDict["chatInfo"] = $val; return $this; }
Sets the chatInfo The chat information associated with this online meeting. @param ChatInfo $val The chatInfo @return OnlineMeeting
setChatInfo
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getCreationDateTime() { if (array_key_exists("creationDateTime", $this->_propDict)) { if (is_a($this->_propDict["creationDateTime"], "\DateTime") || is_null($this->_propDict["creationDateTime"])) { return $this->_propDict["creationDateTime"]; } else { $this->_propDict["creationDateTime"] = new \DateTime($this->_propDict["creationDateTime"]); return $this->_propDict["creationDateTime"]; } } return null; }
Gets the creationDateTime The meeting creation time in UTC. Read-only. @return \DateTime|null The creationDateTime
getCreationDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setCreationDateTime($val) { $this->_propDict["creationDateTime"] = $val; return $this; }
Sets the creationDateTime The meeting creation time in UTC. Read-only. @param \DateTime $val The creationDateTime @return OnlineMeeting
setCreationDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getEndDateTime() { if (array_key_exists("endDateTime", $this->_propDict)) { if (is_a($this->_propDict["endDateTime"], "\DateTime") || is_null($this->_propDict["endDateTime"])) { return $this->_propDict["endDateTime"]; } else { $this->_propDict["endDateTime"] = new \DateTime($this->_propDict["endDateTime"]); return $this->_propDict["endDateTime"]; } } return null; }
Gets the endDateTime The meeting end time in UTC. @return \DateTime|null The endDateTime
getEndDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setEndDateTime($val) { $this->_propDict["endDateTime"] = $val; return $this; }
Sets the endDateTime The meeting end time in UTC. @param \DateTime $val The endDateTime @return OnlineMeeting
setEndDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getExternalId() { if (array_key_exists("externalId", $this->_propDict)) { return $this->_propDict["externalId"]; } else { return null; } }
Gets the externalId The external ID. A custom ID. Optional. @return string|null The externalId
getExternalId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setExternalId($val) { $this->_propDict["externalId"] = $val; return $this; }
Sets the externalId The external ID. A custom ID. Optional. @param string $val The externalId @return OnlineMeeting
setExternalId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getIsBroadcast() { if (array_key_exists("isBroadcast", $this->_propDict)) { return $this->_propDict["isBroadcast"]; } else { return null; } }
Gets the isBroadcast Indicates whether this is a Teams live event. @return bool|null The isBroadcast
getIsBroadcast
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setIsBroadcast($val) { $this->_propDict["isBroadcast"] = boolval($val); return $this; }
Sets the isBroadcast Indicates whether this is a Teams live event. @param bool $val The isBroadcast @return OnlineMeeting
setIsBroadcast
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getIsEntryExitAnnounced() { if (array_key_exists("isEntryExitAnnounced", $this->_propDict)) { return $this->_propDict["isEntryExitAnnounced"]; } else { return null; } }
Gets the isEntryExitAnnounced Indicates whether to announce when callers join or leave. @return bool|null The isEntryExitAnnounced
getIsEntryExitAnnounced
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setIsEntryExitAnnounced($val) { $this->_propDict["isEntryExitAnnounced"] = boolval($val); return $this; }
Sets the isEntryExitAnnounced Indicates whether to announce when callers join or leave. @param bool $val The isEntryExitAnnounced @return OnlineMeeting
setIsEntryExitAnnounced
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getJoinInformation() { if (array_key_exists("joinInformation", $this->_propDict)) { if (is_a($this->_propDict["joinInformation"], "\Beta\Microsoft\Graph\Model\ItemBody") || is_null($this->_propDict["joinInformation"])) { return $this->_propDict["joinInformation"]; } else { $this->_propDict["joinInformation"] = new ItemBody($this->_propDict["joinInformation"]); return $this->_propDict["joinInformation"]; } } return null; }
Gets the joinInformation The join information in the language and locale variant specified in 'Accept-Language' request HTTP header. Read-only. @return ItemBody|null The joinInformation
getJoinInformation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setJoinInformation($val) { $this->_propDict["joinInformation"] = $val; return $this; }
Sets the joinInformation The join information in the language and locale variant specified in 'Accept-Language' request HTTP header. Read-only. @param ItemBody $val The joinInformation @return OnlineMeeting
setJoinInformation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getJoinMeetingIdSettings() { if (array_key_exists("joinMeetingIdSettings", $this->_propDict)) { if (is_a($this->_propDict["joinMeetingIdSettings"], "\Beta\Microsoft\Graph\Model\JoinMeetingIdSettings") || is_null($this->_propDict["joinMeetingIdSettings"])) { return $this->_propDict["joinMeetingIdSettings"]; } else { $this->_propDict["joinMeetingIdSettings"] = new JoinMeetingIdSettings($this->_propDict["joinMeetingIdSettings"]); return $this->_propDict["joinMeetingIdSettings"]; } } return null; }
Gets the joinMeetingIdSettings Specifies the joinMeetingId, the meeting passcode, and the requirement for the passcode. Once an onlineMeeting is created, the joinMeetingIdSettings cannot be modified. To make any changes to this property, the meeting needs to be canceled and a new one needs to be created. @return JoinMeetingIdSettings|null The joinMeetingIdSettings
getJoinMeetingIdSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setJoinMeetingIdSettings($val) { $this->_propDict["joinMeetingIdSettings"] = $val; return $this; }
Sets the joinMeetingIdSettings Specifies the joinMeetingId, the meeting passcode, and the requirement for the passcode. Once an onlineMeeting is created, the joinMeetingIdSettings cannot be modified. To make any changes to this property, the meeting needs to be canceled and a new one needs to be created. @param JoinMeetingIdSettings $val The joinMeetingIdSettings @return OnlineMeeting
setJoinMeetingIdSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getJoinWebUrl() { if (array_key_exists("joinWebUrl", $this->_propDict)) { return $this->_propDict["joinWebUrl"]; } else { return null; } }
Gets the joinWebUrl The join URL of the online meeting. Read-only. @return string|null The joinWebUrl
getJoinWebUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setJoinWebUrl($val) { $this->_propDict["joinWebUrl"] = $val; return $this; }
Sets the joinWebUrl The join URL of the online meeting. Read-only. @param string $val The joinWebUrl @return OnlineMeeting
setJoinWebUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function getLobbyBypassSettings() { if (array_key_exists("lobbyBypassSettings", $this->_propDict)) { if (is_a($this->_propDict["lobbyBypassSettings"], "\Beta\Microsoft\Graph\Model\LobbyBypassSettings") || is_null($this->_propDict["lobbyBypassSettings"])) { return $this->_propDict["lobbyBypassSettings"]; } else { $this->_propDict["lobbyBypassSettings"] = new LobbyBypassSettings($this->_propDict["lobbyBypassSettings"]); return $this->_propDict["lobbyBypassSettings"]; } } return null; }
Gets the lobbyBypassSettings Specifies which participants can bypass the meeting lobby. @return LobbyBypassSettings|null The lobbyBypassSettings
getLobbyBypassSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT
public function setLobbyBypassSettings($val) { $this->_propDict["lobbyBypassSettings"] = $val; return $this; }
Sets the lobbyBypassSettings Specifies which participants can bypass the meeting lobby. @param LobbyBypassSettings $val The lobbyBypassSettings @return OnlineMeeting
setLobbyBypassSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OnlineMeeting.php
MIT