code
stringlengths
17
247k
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 getBlockDataRecoveryAgent() { if (array_key_exists("blockDataRecoveryAgent", $this->_propDict)) { return $this->_propDict["blockDataRecoveryAgent"]; } else { return null; } }
Gets the blockDataRecoveryAgent Indicates whether to block certificate-based data recovery agent. @return bool|null The blockDataRecoveryAgent
getBlockDataRecoveryAgent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function setBlockDataRecoveryAgent($val) { $this->_propDict["blockDataRecoveryAgent"] = $val; return $this; }
Sets the blockDataRecoveryAgent Indicates whether to block certificate-based data recovery agent. @param bool $val The value of the blockDataRecoveryAgent @return BitLockerRecoveryOptions
setBlockDataRecoveryAgent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function getEnableBitLockerAfterRecoveryInformationToStore() { if (array_key_exists("enableBitLockerAfterRecoveryInformationToStore", $this->_propDict)) { return $this->_propDict["enableBitLockerAfterRecoveryInformationToStore"]; } else { return null; } }
Gets the enableBitLockerAfterRecoveryInformationToStore Indicates whether or not to enable BitLocker until recovery information is stored in AD DS. @return bool|null The enableBitLockerAfterRecoveryInformationToStore
getEnableBitLockerAfterRecoveryInformationToStore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function setEnableBitLockerAfterRecoveryInformationToStore($val) { $this->_propDict["enableBitLockerAfterRecoveryInformationToStore"] = $val; return $this; }
Sets the enableBitLockerAfterRecoveryInformationToStore Indicates whether or not to enable BitLocker until recovery information is stored in AD DS. @param bool $val The value of the enableBitLockerAfterRecoveryInformationToStore @return BitLockerRecoveryOptions
setEnableBitLockerAfterRecoveryInformationToStore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function getEnableRecoveryInformationSaveToStore() { if (array_key_exists("enableRecoveryInformationSaveToStore", $this->_propDict)) { return $this->_propDict["enableRecoveryInformationSaveToStore"]; } else { return null; } }
Gets the enableRecoveryInformationSaveToStore Indicates whether or not to allow BitLocker recovery information to store in AD DS. @return bool|null The enableRecoveryInformationSaveToStore
getEnableRecoveryInformationSaveToStore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function setEnableRecoveryInformationSaveToStore($val) { $this->_propDict["enableRecoveryInformationSaveToStore"] = $val; return $this; }
Sets the enableRecoveryInformationSaveToStore Indicates whether or not to allow BitLocker recovery information to store in AD DS. @param bool $val The value of the enableRecoveryInformationSaveToStore @return BitLockerRecoveryOptions
setEnableRecoveryInformationSaveToStore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function getHideRecoveryOptions() { if (array_key_exists("hideRecoveryOptions", $this->_propDict)) { return $this->_propDict["hideRecoveryOptions"]; } else { return null; } }
Gets the hideRecoveryOptions Indicates whether or not to allow showing recovery options in BitLocker Setup Wizard for fixed or system disk. @return bool|null The hideRecoveryOptions
getHideRecoveryOptions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function setHideRecoveryOptions($val) { $this->_propDict["hideRecoveryOptions"] = $val; return $this; }
Sets the hideRecoveryOptions Indicates whether or not to allow showing recovery options in BitLocker Setup Wizard for fixed or system disk. @param bool $val The value of the hideRecoveryOptions @return BitLockerRecoveryOptions
setHideRecoveryOptions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function getRecoveryInformationToStore() { if (array_key_exists("recoveryInformationToStore", $this->_propDict)) { if (is_a($this->_propDict["recoveryInformationToStore"], "\Beta\Microsoft\Graph\Model\BitLockerRecoveryInformationType") || is_null($this->_propDict["recoveryInformationToStore"])) { return $this->_propDict["recoveryInformationToStore"]; } else { $this->_propDict["recoveryInformationToStore"] = new BitLockerRecoveryInformationType($this->_propDict["recoveryInformationToStore"]); return $this->_propDict["recoveryInformationToStore"]; } } return null; }
Gets the recoveryInformationToStore Configure what pieces of BitLocker recovery information are stored to AD DS. Possible values are: passwordAndKey, passwordOnly. @return BitLockerRecoveryInformationType|null The recoveryInformationToStore
getRecoveryInformationToStore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function setRecoveryInformationToStore($val) { $this->_propDict["recoveryInformationToStore"] = $val; return $this; }
Sets the recoveryInformationToStore Configure what pieces of BitLocker recovery information are stored to AD DS. Possible values are: passwordAndKey, passwordOnly. @param BitLockerRecoveryInformationType $val The value to assign to the recoveryInformationToStore @return BitLockerRecoveryOptions The BitLockerRecoveryOptions
setRecoveryInformationToStore
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function getRecoveryKeyUsage() { if (array_key_exists("recoveryKeyUsage", $this->_propDict)) { if (is_a($this->_propDict["recoveryKeyUsage"], "\Beta\Microsoft\Graph\Model\ConfigurationUsage") || is_null($this->_propDict["recoveryKeyUsage"])) { return $this->_propDict["recoveryKeyUsage"]; } else { $this->_propDict["recoveryKeyUsage"] = new ConfigurationUsage($this->_propDict["recoveryKeyUsage"]); return $this->_propDict["recoveryKeyUsage"]; } } return null; }
Gets the recoveryKeyUsage Indicates whether users are allowed or required to generate a 256-bit recovery key for fixed or system disk. Possible values are: blocked, required, allowed, notConfigured. @return ConfigurationUsage|null The recoveryKeyUsage
getRecoveryKeyUsage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function setRecoveryKeyUsage($val) { $this->_propDict["recoveryKeyUsage"] = $val; return $this; }
Sets the recoveryKeyUsage Indicates whether users are allowed or required to generate a 256-bit recovery key for fixed or system disk. Possible values are: blocked, required, allowed, notConfigured. @param ConfigurationUsage $val The value to assign to the recoveryKeyUsage @return BitLockerRecoveryOptions The BitLockerRecoveryOptions
setRecoveryKeyUsage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function getRecoveryPasswordUsage() { if (array_key_exists("recoveryPasswordUsage", $this->_propDict)) { if (is_a($this->_propDict["recoveryPasswordUsage"], "\Beta\Microsoft\Graph\Model\ConfigurationUsage") || is_null($this->_propDict["recoveryPasswordUsage"])) { return $this->_propDict["recoveryPasswordUsage"]; } else { $this->_propDict["recoveryPasswordUsage"] = new ConfigurationUsage($this->_propDict["recoveryPasswordUsage"]); return $this->_propDict["recoveryPasswordUsage"]; } } return null; }
Gets the recoveryPasswordUsage Indicates whether users are allowed or required to generate a 48-digit recovery password for fixed or system disk. Possible values are: blocked, required, allowed, notConfigured. @return ConfigurationUsage|null The recoveryPasswordUsage
getRecoveryPasswordUsage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function setRecoveryPasswordUsage($val) { $this->_propDict["recoveryPasswordUsage"] = $val; return $this; }
Sets the recoveryPasswordUsage Indicates whether users are allowed or required to generate a 48-digit recovery password for fixed or system disk. Possible values are: blocked, required, allowed, notConfigured. @param ConfigurationUsage $val The value to assign to the recoveryPasswordUsage @return BitLockerRecoveryOptions The BitLockerRecoveryOptions
setRecoveryPasswordUsage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BitLockerRecoveryOptions.php
MIT
public function getState() { if (array_key_exists("state", $this->_propDict)) { if (is_a($this->_propDict["state"], "\Microsoft\Graph\Model\ConnectedOrganizationState") || is_null($this->_propDict["state"])) { return $this->_propDict["state"]; } else { $this->_propDict["state"] = new ConnectedOrganizationState($this->_propDict["state"]); return $this->_propDict["state"]; } } return null; }
Gets the state The state of a connected organization defines whether assignment policies with requestor scope type AllConfiguredConnectedOrganizationSubjects are applicable or not. The possible values are: configured, proposed, unknownFutureValue. @return ConnectedOrganizationState|null The state
getState
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/ConnectedOrganization.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ConnectedOrganization.php
MIT
public function getOnboardingRequestExpiryDateTime() { if (array_key_exists("onboardingRequestExpiryDateTime", $this->_propDict)) { if (is_a($this->_propDict["onboardingRequestExpiryDateTime"], "\DateTime") || is_null($this->_propDict["onboardingRequestExpiryDateTime"])) { return $this->_propDict["onboardingRequestExpiryDateTime"]; } else { $this->_propDict["onboardingRequestExpiryDateTime"] = new \DateTime($this->_propDict["onboardingRequestExpiryDateTime"]); return $this->_propDict["onboardingRequestExpiryDateTime"]; } } return null; }
Gets the onboardingRequestExpiryDateTime When the OnboardingStatus is Onboarding, This is the date time when the onboarding request expires. @return \DateTime|null The onboardingRequestExpiryDateTime
getOnboardingRequestExpiryDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
MIT
public function setOnboardingRequestExpiryDateTime($val) { $this->_propDict["onboardingRequestExpiryDateTime"] = $val; return $this; }
Sets the onboardingRequestExpiryDateTime When the OnboardingStatus is Onboarding, This is the date time when the onboarding request expires. @param \DateTime $val The onboardingRequestExpiryDateTime @return RemoteAssistancePartner
setOnboardingRequestExpiryDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
MIT
public function getOnboardingStatus() { if (array_key_exists("onboardingStatus", $this->_propDict)) { if (is_a($this->_propDict["onboardingStatus"], "\Beta\Microsoft\Graph\Model\RemoteAssistanceOnboardingStatus") || is_null($this->_propDict["onboardingStatus"])) { return $this->_propDict["onboardingStatus"]; } else { $this->_propDict["onboardingStatus"] = new RemoteAssistanceOnboardingStatus($this->_propDict["onboardingStatus"]); return $this->_propDict["onboardingStatus"]; } } return null; }
Gets the onboardingStatus A friendly description of the current TeamViewer connector status. Possible values are: notOnboarded, onboarding, onboarded. @return RemoteAssistanceOnboardingStatus|null The onboardingStatus
getOnboardingStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
MIT
public function setOnboardingStatus($val) { $this->_propDict["onboardingStatus"] = $val; return $this; }
Sets the onboardingStatus A friendly description of the current TeamViewer connector status. Possible values are: notOnboarded, onboarding, onboarded. @param RemoteAssistanceOnboardingStatus $val The onboardingStatus @return RemoteAssistancePartner
setOnboardingStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
MIT
public function getOnboardingUrl() { if (array_key_exists("onboardingUrl", $this->_propDict)) { return $this->_propDict["onboardingUrl"]; } else { return null; } }
Gets the onboardingUrl URL of the partner's onboarding portal, where an administrator can configure their Remote Assistance service. @return string|null The onboardingUrl
getOnboardingUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
MIT
public function setOnboardingUrl($val) { $this->_propDict["onboardingUrl"] = $val; return $this; }
Sets the onboardingUrl URL of the partner's onboarding portal, where an administrator can configure their Remote Assistance service. @param string $val The onboardingUrl @return RemoteAssistancePartner
setOnboardingUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RemoteAssistancePartner.php
MIT
public function getColorMode() { if (array_key_exists("colorMode", $this->_propDict)) { if (is_a($this->_propDict["colorMode"], "\Microsoft\Graph\Model\PrintColorMode") || is_null($this->_propDict["colorMode"])) { return $this->_propDict["colorMode"]; } else { $this->_propDict["colorMode"] = new PrintColorMode($this->_propDict["colorMode"]); return $this->_propDict["colorMode"]; } } return null; }
Gets the colorMode The default color mode to use when printing the document. Valid values are described in the following table. @return PrintColorMode|null The colorMode
getColorMode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setColorMode($val) { $this->_propDict["colorMode"] = $val; return $this; }
Sets the colorMode The default color mode to use when printing the document. Valid values are described in the following table. @param PrintColorMode $val The value to assign to the colorMode @return PrinterDefaults The PrinterDefaults
setColorMode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getCopiesPerJob() { if (array_key_exists("copiesPerJob", $this->_propDict)) { return $this->_propDict["copiesPerJob"]; } else { return null; } }
Gets the copiesPerJob The default number of copies printed per job. @return int|null The copiesPerJob
getCopiesPerJob
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setCopiesPerJob($val) { $this->_propDict["copiesPerJob"] = $val; return $this; }
Sets the copiesPerJob The default number of copies printed per job. @param int $val The value of the copiesPerJob @return PrinterDefaults
setCopiesPerJob
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getDpi() { if (array_key_exists("dpi", $this->_propDict)) { return $this->_propDict["dpi"]; } else { return null; } }
Gets the dpi The default resolution in DPI to use when printing the job. @return int|null The dpi
getDpi
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setDpi($val) { $this->_propDict["dpi"] = $val; return $this; }
Sets the dpi The default resolution in DPI to use when printing the job. @param int $val The value of the dpi @return PrinterDefaults
setDpi
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getDuplexMode() { if (array_key_exists("duplexMode", $this->_propDict)) { if (is_a($this->_propDict["duplexMode"], "\Microsoft\Graph\Model\PrintDuplexMode") || is_null($this->_propDict["duplexMode"])) { return $this->_propDict["duplexMode"]; } else { $this->_propDict["duplexMode"] = new PrintDuplexMode($this->_propDict["duplexMode"]); return $this->_propDict["duplexMode"]; } } return null; }
Gets the duplexMode The default duplex (double-sided) configuration to use when printing a document. Valid values are described in the following table. @return PrintDuplexMode|null The duplexMode
getDuplexMode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setDuplexMode($val) { $this->_propDict["duplexMode"] = $val; return $this; }
Sets the duplexMode The default duplex (double-sided) configuration to use when printing a document. Valid values are described in the following table. @param PrintDuplexMode $val The value to assign to the duplexMode @return PrinterDefaults The PrinterDefaults
setDuplexMode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getFinishings() { if (array_key_exists("finishings", $this->_propDict)) { if (is_a($this->_propDict["finishings"], "\Microsoft\Graph\Model\PrintFinishing") || is_null($this->_propDict["finishings"])) { return $this->_propDict["finishings"]; } else { $this->_propDict["finishings"] = new PrintFinishing($this->_propDict["finishings"]); return $this->_propDict["finishings"]; } } return null; }
Gets the finishings The default set of finishings to apply to print jobs. Valid values are described in the following table. @return PrintFinishing|null The finishings
getFinishings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setFinishings($val) { $this->_propDict["finishings"] = $val; return $this; }
Sets the finishings The default set of finishings to apply to print jobs. Valid values are described in the following table. @param PrintFinishing $val The value to assign to the finishings @return PrinterDefaults The PrinterDefaults
setFinishings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getFitPdfToPage() { if (array_key_exists("fitPdfToPage", $this->_propDict)) { return $this->_propDict["fitPdfToPage"]; } else { return null; } }
Gets the fitPdfToPage The default fitPdfToPage setting. True to fit each page of a PDF document to a physical sheet of media; false to let the printer decide how to lay out impressions. @return bool|null The fitPdfToPage
getFitPdfToPage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setFitPdfToPage($val) { $this->_propDict["fitPdfToPage"] = $val; return $this; }
Sets the fitPdfToPage The default fitPdfToPage setting. True to fit each page of a PDF document to a physical sheet of media; false to let the printer decide how to lay out impressions. @param bool $val The value of the fitPdfToPage @return PrinterDefaults
setFitPdfToPage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getMediaColor() { if (array_key_exists("mediaColor", $this->_propDict)) { return $this->_propDict["mediaColor"]; } else { return null; } }
Gets the mediaColor The default media (such as paper) color to print the document on. @return string|null The mediaColor
getMediaColor
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setMediaColor($val) { $this->_propDict["mediaColor"] = $val; return $this; }
Sets the mediaColor The default media (such as paper) color to print the document on. @param string $val The value of the mediaColor @return PrinterDefaults
setMediaColor
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getMediaSize() { if (array_key_exists("mediaSize", $this->_propDict)) { return $this->_propDict["mediaSize"]; } else { return null; } }
Gets the mediaSize The default media size to use. Supports standard size names for ISO and ANSI media sizes. Valid values are listed in the printerCapabilities topic. @return string|null The mediaSize
getMediaSize
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setMediaSize($val) { $this->_propDict["mediaSize"] = $val; return $this; }
Sets the mediaSize The default media size to use. Supports standard size names for ISO and ANSI media sizes. Valid values are listed in the printerCapabilities topic. @param string $val The value of the mediaSize @return PrinterDefaults
setMediaSize
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getMultipageLayout() { if (array_key_exists("multipageLayout", $this->_propDict)) { if (is_a($this->_propDict["multipageLayout"], "\Microsoft\Graph\Model\PrintMultipageLayout") || is_null($this->_propDict["multipageLayout"])) { return $this->_propDict["multipageLayout"]; } else { $this->_propDict["multipageLayout"] = new PrintMultipageLayout($this->_propDict["multipageLayout"]); return $this->_propDict["multipageLayout"]; } } return null; }
Gets the multipageLayout The default direction to lay out pages when multiple pages are being printed per sheet. Valid values are described in the following table. @return PrintMultipageLayout|null The multipageLayout
getMultipageLayout
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setMultipageLayout($val) { $this->_propDict["multipageLayout"] = $val; return $this; }
Sets the multipageLayout The default direction to lay out pages when multiple pages are being printed per sheet. Valid values are described in the following table. @param PrintMultipageLayout $val The value to assign to the multipageLayout @return PrinterDefaults The PrinterDefaults
setMultipageLayout
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getOrientation() { if (array_key_exists("orientation", $this->_propDict)) { if (is_a($this->_propDict["orientation"], "\Microsoft\Graph\Model\PrintOrientation") || is_null($this->_propDict["orientation"])) { return $this->_propDict["orientation"]; } else { $this->_propDict["orientation"] = new PrintOrientation($this->_propDict["orientation"]); return $this->_propDict["orientation"]; } } return null; }
Gets the orientation The default orientation to use when printing the document. Valid values are described in the following table. @return PrintOrientation|null The orientation
getOrientation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setOrientation($val) { $this->_propDict["orientation"] = $val; return $this; }
Sets the orientation The default orientation to use when printing the document. Valid values are described in the following table. @param PrintOrientation $val The value to assign to the orientation @return PrinterDefaults The PrinterDefaults
setOrientation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getOutputBin() { if (array_key_exists("outputBin", $this->_propDict)) { return $this->_propDict["outputBin"]; } else { return null; } }
Gets the outputBin The default output bin to place completed prints into. See the printer's capabilities for a list of supported output bins. @return string|null The outputBin
getOutputBin
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setOutputBin($val) { $this->_propDict["outputBin"] = $val; return $this; }
Sets the outputBin The default output bin to place completed prints into. See the printer's capabilities for a list of supported output bins. @param string $val The value of the outputBin @return PrinterDefaults
setOutputBin
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getPagesPerSheet() { if (array_key_exists("pagesPerSheet", $this->_propDict)) { return $this->_propDict["pagesPerSheet"]; } else { return null; } }
Gets the pagesPerSheet The default number of document pages to print on each sheet. @return int|null The pagesPerSheet
getPagesPerSheet
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setPagesPerSheet($val) { $this->_propDict["pagesPerSheet"] = $val; return $this; }
Sets the pagesPerSheet The default number of document pages to print on each sheet. @param int $val The value of the pagesPerSheet @return PrinterDefaults
setPagesPerSheet
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getQuality() { if (array_key_exists("quality", $this->_propDict)) { if (is_a($this->_propDict["quality"], "\Microsoft\Graph\Model\PrintQuality") || is_null($this->_propDict["quality"])) { return $this->_propDict["quality"]; } else { $this->_propDict["quality"] = new PrintQuality($this->_propDict["quality"]); return $this->_propDict["quality"]; } } return null; }
Gets the quality The default quality to use when printing the document. Valid values are described in the following table. @return PrintQuality|null The quality
getQuality
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setQuality($val) { $this->_propDict["quality"] = $val; return $this; }
Sets the quality The default quality to use when printing the document. Valid values are described in the following table. @param PrintQuality $val The value to assign to the quality @return PrinterDefaults The PrinterDefaults
setQuality
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getScaling() { if (array_key_exists("scaling", $this->_propDict)) { if (is_a($this->_propDict["scaling"], "\Microsoft\Graph\Model\PrintScaling") || is_null($this->_propDict["scaling"])) { return $this->_propDict["scaling"]; } else { $this->_propDict["scaling"] = new PrintScaling($this->_propDict["scaling"]); return $this->_propDict["scaling"]; } } return null; }
Gets the scaling Specifies how the printer scales the document data to fit the requested media. Valid values are described in the following table. @return PrintScaling|null The scaling
getScaling
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function setScaling($val) { $this->_propDict["scaling"] = $val; return $this; }
Sets the scaling Specifies how the printer scales the document data to fit the requested media. Valid values are described in the following table. @param PrintScaling $val The value to assign to the scaling @return PrinterDefaults The PrinterDefaults
setScaling
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterDefaults.php
MIT
public function getCountriesBlockedForMinors() { if (array_key_exists("countriesBlockedForMinors", $this->_propDict)) { return $this->_propDict["countriesBlockedForMinors"]; } else { return null; } }
Gets the countriesBlockedForMinors Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @return string|null The countriesBlockedForMinors
getCountriesBlockedForMinors
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ParentalControlSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ParentalControlSettings.php
MIT
public function setCountriesBlockedForMinors($val) { $this->_propDict["countriesBlockedForMinors"] = $val; return $this; }
Sets the countriesBlockedForMinors Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. @param string $val The value of the countriesBlockedForMinors @return ParentalControlSettings
setCountriesBlockedForMinors
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ParentalControlSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ParentalControlSettings.php
MIT
public function getLegalAgeGroupRule() { if (array_key_exists("legalAgeGroupRule", $this->_propDict)) { return $this->_propDict["legalAgeGroupRule"]; } else { return null; } }
Gets the legalAgeGroupRule Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. @return string|null The legalAgeGroupRule
getLegalAgeGroupRule
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ParentalControlSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ParentalControlSettings.php
MIT
public function setLegalAgeGroupRule($val) { $this->_propDict["legalAgeGroupRule"] = $val; return $this; }
Sets the legalAgeGroupRule Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. @param string $val The value of the legalAgeGroupRule @return ParentalControlSettings
setLegalAgeGroupRule
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ParentalControlSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ParentalControlSettings.php
MIT
public function getAllowedAudience() { if (array_key_exists("allowedAudience", $this->_propDict)) { if (is_a($this->_propDict["allowedAudience"], "\Beta\Microsoft\Graph\Model\BroadcastMeetingAudience") || is_null($this->_propDict["allowedAudience"])) { return $this->_propDict["allowedAudience"]; } else { $this->_propDict["allowedAudience"] = new BroadcastMeetingAudience($this->_propDict["allowedAudience"]); return $this->_propDict["allowedAudience"]; } } return null; }
Gets the allowedAudience Defines who can join the Teams live event. Possible values are listed in the following table. @return BroadcastMeetingAudience|null The allowedAudience
getAllowedAudience
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function setAllowedAudience($val) { $this->_propDict["allowedAudience"] = $val; return $this; }
Sets the allowedAudience Defines who can join the Teams live event. Possible values are listed in the following table. @param BroadcastMeetingAudience $val The value to assign to the allowedAudience @return BroadcastMeetingSettings The BroadcastMeetingSettings
setAllowedAudience
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function getCaptions() { if (array_key_exists("captions", $this->_propDict)) { if (is_a($this->_propDict["captions"], "\Beta\Microsoft\Graph\Model\BroadcastMeetingCaptionSettings") || is_null($this->_propDict["captions"])) { return $this->_propDict["captions"]; } else { $this->_propDict["captions"] = new BroadcastMeetingCaptionSettings($this->_propDict["captions"]); return $this->_propDict["captions"]; } } return null; }
Gets the captions Caption settings of a Teams live event. @return BroadcastMeetingCaptionSettings|null The captions
getCaptions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function setCaptions($val) { $this->_propDict["captions"] = $val; return $this; }
Sets the captions Caption settings of a Teams live event. @param BroadcastMeetingCaptionSettings $val The value to assign to the captions @return BroadcastMeetingSettings The BroadcastMeetingSettings
setCaptions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function getIsAttendeeReportEnabled() { if (array_key_exists("isAttendeeReportEnabled", $this->_propDict)) { return $this->_propDict["isAttendeeReportEnabled"]; } else { return null; } }
Gets the isAttendeeReportEnabled Indicates whether attendee report is enabled for this Teams live event. Default value is false. @return bool|null The isAttendeeReportEnabled
getIsAttendeeReportEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function setIsAttendeeReportEnabled($val) { $this->_propDict["isAttendeeReportEnabled"] = $val; return $this; }
Sets the isAttendeeReportEnabled Indicates whether attendee report is enabled for this Teams live event. Default value is false. @param bool $val The value of the isAttendeeReportEnabled @return BroadcastMeetingSettings
setIsAttendeeReportEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function getIsQuestionAndAnswerEnabled() { if (array_key_exists("isQuestionAndAnswerEnabled", $this->_propDict)) { return $this->_propDict["isQuestionAndAnswerEnabled"]; } else { return null; } }
Gets the isQuestionAndAnswerEnabled Indicates whether Q&A is enabled for this Teams live event. Default value is false. @return bool|null The isQuestionAndAnswerEnabled
getIsQuestionAndAnswerEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function setIsQuestionAndAnswerEnabled($val) { $this->_propDict["isQuestionAndAnswerEnabled"] = $val; return $this; }
Sets the isQuestionAndAnswerEnabled Indicates whether Q&A is enabled for this Teams live event. Default value is false. @param bool $val The value of the isQuestionAndAnswerEnabled @return BroadcastMeetingSettings
setIsQuestionAndAnswerEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function getIsRecordingEnabled() { if (array_key_exists("isRecordingEnabled", $this->_propDict)) { return $this->_propDict["isRecordingEnabled"]; } else { return null; } }
Gets the isRecordingEnabled Indicates whether recording is enabled for this Teams live event. Default value is false. @return bool|null The isRecordingEnabled
getIsRecordingEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function setIsRecordingEnabled($val) { $this->_propDict["isRecordingEnabled"] = $val; return $this; }
Sets the isRecordingEnabled Indicates whether recording is enabled for this Teams live event. Default value is false. @param bool $val The value of the isRecordingEnabled @return BroadcastMeetingSettings
setIsRecordingEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function getIsVideoOnDemandEnabled() { if (array_key_exists("isVideoOnDemandEnabled", $this->_propDict)) { return $this->_propDict["isVideoOnDemandEnabled"]; } else { return null; } }
Gets the isVideoOnDemandEnabled Indicates whether video on demand is enabled for this Teams live event. Default value is false. @return bool|null The isVideoOnDemandEnabled
getIsVideoOnDemandEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function setIsVideoOnDemandEnabled($val) { $this->_propDict["isVideoOnDemandEnabled"] = $val; return $this; }
Sets the isVideoOnDemandEnabled Indicates whether video on demand is enabled for this Teams live event. Default value is false. @param bool $val The value of the isVideoOnDemandEnabled @return BroadcastMeetingSettings
setIsVideoOnDemandEnabled
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BroadcastMeetingSettings.php
MIT
public function getTarget() { if (array_key_exists("target", $this->_propDict)) { if (is_a($this->_propDict["target"], "\Microsoft\Graph\Model\UnifiedRoleManagementPolicyRuleTarget") || is_null($this->_propDict["target"])) { return $this->_propDict["target"]; } else { $this->_propDict["target"] = new UnifiedRoleManagementPolicyRuleTarget($this->_propDict["target"]); return $this->_propDict["target"]; } } return null; }
Gets the target Defines details of scope that's targeted by role management policy rule. The details can include the principal type, the role assignment type, and actions affecting a role. Supports $filter (eq, ne). @return UnifiedRoleManagementPolicyRuleTarget|null The target
getTarget
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleManagementPolicyRule.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/UnifiedRoleManagementPolicyRule.php
MIT
public function setDateTime(\DateTimeInterface $dt) { $this->value = $dt->format('Ymd'); }
Sets the property as a DateTime object. @param \DateTimeInterface $dt
setDateTime
php
xiebruce/PicUploader
vendor/sabre/vobject/lib/Property/VCard/Date.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Property/VCard/Date.php
MIT
public function getFile() { if (array_key_exists("file", $this->_propDict)) { if (is_a($this->_propDict["file"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["file"])) { return $this->_propDict["file"]; } else { $this->_propDict["file"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["file"]); return $this->_propDict["file"]; } } return null; }
Gets the file File as a byte array @return \GuzzleHttp\Psr7\Stream|null The file
getFile
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WindowsInformationProtectionAppLockerFile.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsInformationProtectionAppLockerFile.php
MIT
public function getFileHash() { if (array_key_exists("fileHash", $this->_propDict)) { return $this->_propDict["fileHash"]; } else { return null; } }
Gets the fileHash SHA256 hash of the file @return string|null The fileHash
getFileHash
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WindowsInformationProtectionAppLockerFile.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsInformationProtectionAppLockerFile.php
MIT
public function setFileHash($val) { $this->_propDict["fileHash"] = $val; return $this; }
Sets the fileHash SHA256 hash of the file @param string $val The fileHash @return WindowsInformationProtectionAppLockerFile
setFileHash
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/WindowsInformationProtectionAppLockerFile.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsInformationProtectionAppLockerFile.php
MIT
public function getCustomAccountResetCredentialsUrl() { if (array_key_exists("customAccountResetCredentialsUrl", $this->_propDict)) { return $this->_propDict["customAccountResetCredentialsUrl"]; } else { return null; } }
Gets the customAccountResetCredentialsUrl A custom URL for resetting account credentials. This URL must be in ASCII format or non-ASCII characters must be URL encoded, and not exceed 128 characters. @return string|null The customAccountResetCredentialsUrl
getCustomAccountResetCredentialsUrl
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 setCustomAccountResetCredentialsUrl($val) { $this->_propDict["customAccountResetCredentialsUrl"] = $val; return $this; }
Sets the customAccountResetCredentialsUrl A custom URL for resetting account credentials. This URL must be in ASCII format or non-ASCII characters must be URL encoded, and not exceed 128 characters. @param string $val The customAccountResetCredentialsUrl @return OrganizationalBrandingProperties
setCustomAccountResetCredentialsUrl
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 getCustomCannotAccessYourAccountText() { if (array_key_exists("customCannotAccessYourAccountText", $this->_propDict)) { return $this->_propDict["customCannotAccessYourAccountText"]; } else { return null; } }
Gets the customCannotAccessYourAccountText A string to replace the default 'Can't access your account?' self-service password reset (SSPR) hyperlink text on the sign-in page. This text must be in Unicode format and not exceed 256 characters. @return string|null The customCannotAccessYourAccountText
getCustomCannotAccessYourAccountText
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 setCustomCannotAccessYourAccountText($val) { $this->_propDict["customCannotAccessYourAccountText"] = $val; return $this; }
Sets the customCannotAccessYourAccountText A string to replace the default 'Can't access your account?' self-service password reset (SSPR) hyperlink text on the sign-in page. This text must be in Unicode format and not exceed 256 characters. @param string $val The customCannotAccessYourAccountText @return OrganizationalBrandingProperties
setCustomCannotAccessYourAccountText
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 getCustomCannotAccessYourAccountUrl() { if (array_key_exists("customCannotAccessYourAccountUrl", $this->_propDict)) { return $this->_propDict["customCannotAccessYourAccountUrl"]; } else { return null; } }
Gets the customCannotAccessYourAccountUrl A custom URL to replace the default URL of the self-service password reset (SSPR) 'Can't access your account?' hyperlink on the sign-in page. This URL must be in ASCII format or non-ASCII characters must be URL encoded, and not exceed 128 characters. DO NOT USE. Use customAccountResetCredentialsUrl instead. @return string|null The customCannotAccessYourAccountUrl
getCustomCannotAccessYourAccountUrl
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 setCustomCannotAccessYourAccountUrl($val) { $this->_propDict["customCannotAccessYourAccountUrl"] = $val; return $this; }
Sets the customCannotAccessYourAccountUrl A custom URL to replace the default URL of the self-service password reset (SSPR) 'Can't access your account?' hyperlink on the sign-in page. This URL must be in ASCII format or non-ASCII characters must be URL encoded, and not exceed 128 characters. DO NOT USE. Use customAccountResetCredentialsUrl instead. @param string $val The customCannotAccessYourAccountUrl @return OrganizationalBrandingProperties
setCustomCannotAccessYourAccountUrl
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 getCustomCSS() { if (array_key_exists("customCSS", $this->_propDict)) { if (is_a($this->_propDict["customCSS"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["customCSS"])) { return $this->_propDict["customCSS"]; } else { $this->_propDict["customCSS"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["customCSS"]); return $this->_propDict["customCSS"]; } } return null; }
Gets the customCSS CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB. @return \GuzzleHttp\Psr7\Stream|null The customCSS
getCustomCSS
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 setCustomCSS($val) { $this->_propDict["customCSS"] = $val; return $this; }
Sets the customCSS CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB. @param \GuzzleHttp\Psr7\Stream $val The customCSS @return OrganizationalBrandingProperties
setCustomCSS
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 getCustomCSSRelativeUrl() { if (array_key_exists("customCSSRelativeUrl", $this->_propDict)) { return $this->_propDict["customCSSRelativeUrl"]; } else { return null; } }
Gets the customCSSRelativeUrl A relative URL for the customCSS 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 customCSSRelativeUrl
getCustomCSSRelativeUrl
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 setCustomCSSRelativeUrl($val) { $this->_propDict["customCSSRelativeUrl"] = $val; return $this; }
Sets the customCSSRelativeUrl A relative URL for the customCSS 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 customCSSRelativeUrl @return OrganizationalBrandingProperties
setCustomCSSRelativeUrl
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 getCustomForgotMyPasswordText() { if (array_key_exists("customForgotMyPasswordText", $this->_propDict)) { return $this->_propDict["customForgotMyPasswordText"]; } else { return null; } }
Gets the customForgotMyPasswordText A string to replace the default 'Forgot my password' hyperlink text on the sign-in form. This text must be in Unicode format and not exceed 256 characters. @return string|null The customForgotMyPasswordText
getCustomForgotMyPasswordText
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 setCustomForgotMyPasswordText($val) { $this->_propDict["customForgotMyPasswordText"] = $val; return $this; }
Sets the customForgotMyPasswordText A string to replace the default 'Forgot my password' hyperlink text on the sign-in form. This text must be in Unicode format and not exceed 256 characters. @param string $val The customForgotMyPasswordText @return OrganizationalBrandingProperties
setCustomForgotMyPasswordText
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 getCustomPrivacyAndCookiesText() { if (array_key_exists("customPrivacyAndCookiesText", $this->_propDict)) { return $this->_propDict["customPrivacyAndCookiesText"]; } else { return null; } }
Gets the customPrivacyAndCookiesText A string to replace the default 'Privacy and Cookies' hyperlink text in the footer. This text must be in Unicode format and not exceed 256 characters. @return string|null The customPrivacyAndCookiesText
getCustomPrivacyAndCookiesText
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 setCustomPrivacyAndCookiesText($val) { $this->_propDict["customPrivacyAndCookiesText"] = $val; return $this; }
Sets the customPrivacyAndCookiesText A string to replace the default 'Privacy and Cookies' hyperlink text in the footer. This text must be in Unicode format and not exceed 256 characters. @param string $val The customPrivacyAndCookiesText @return OrganizationalBrandingProperties
setCustomPrivacyAndCookiesText
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 getCustomPrivacyAndCookiesUrl() { if (array_key_exists("customPrivacyAndCookiesUrl", $this->_propDict)) { return $this->_propDict["customPrivacyAndCookiesUrl"]; } else { return null; } }
Gets 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. @return string|null The customPrivacyAndCookiesUrl
getCustomPrivacyAndCookiesUrl
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 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