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 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 getContentType()
{
if (array_key_exists("contentType", $this->_propDict)) {
return $this->_propDict["contentType"];
} else {
return null;
}
} | Gets the contentType
The default content (MIME) type to use when processing documents.
@return string|null The contentType | getContentType | 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 setContentType($val)
{
$this->_propDict["contentType"] = $val;
return $this;
} | Sets the contentType
The default content (MIME) type to use when processing documents.
@param string $val The value of the contentType
@return PrinterDefaults | setContentType | 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 getMediaType()
{
if (array_key_exists("mediaType", $this->_propDict)) {
return $this->_propDict["mediaType"];
} else {
return null;
}
} | Gets the mediaType
The default media (such as paper) type to print the document on.
@return string|null The mediaType | getMediaType | 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 setMediaType($val)
{
$this->_propDict["mediaType"] = $val;
return $this;
} | Sets the mediaType
The default media (such as paper) type to print the document on.
@param string $val The value of the mediaType
@return PrinterDefaults | setMediaType | 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 getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
} | Gets the displayName
The name of the sender.
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
The name of the sender.
@param string $val The value of the displayName
@return EmailSender | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | MIT |
public function getDomainName()
{
if (array_key_exists("domainName", $this->_propDict)) {
return $this->_propDict["domainName"];
} else {
return null;
}
} | Gets the domainName
Sender domain.
@return string|null The domainName | getDomainName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | MIT |
public function setDomainName($val)
{
$this->_propDict["domainName"] = $val;
return $this;
} | Sets the domainName
Sender domain.
@param string $val The value of the domainName
@return EmailSender | setDomainName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | MIT |
public function getEmailAddress()
{
if (array_key_exists("emailAddress", $this->_propDict)) {
return $this->_propDict["emailAddress"];
} else {
return null;
}
} | Gets the emailAddress
Sender email address.
@return string|null The emailAddress | getEmailAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | MIT |
public function setEmailAddress($val)
{
$this->_propDict["emailAddress"] = $val;
return $this;
} | Sets the emailAddress
Sender email address.
@param string $val The value of the emailAddress
@return EmailSender | setEmailAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EmailSender.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 setTarget($val)
{
$this->_propDict["target"] = $val;
return $this;
} | Sets 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).
@param UnifiedRoleManagementPolicyRuleTarget $val The target
@return UnifiedRoleManagementPolicyRule | setTarget | 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 getRecipientShiftId()
{
if (array_key_exists("recipientShiftId", $this->_propDict)) {
return $this->_propDict["recipientShiftId"];
} else {
return null;
}
} | Gets the recipientShiftId
Shift ID for the recipient user with whom the request is to swap.
@return string|null The recipientShiftId | getRecipientShiftId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SwapShiftsChangeRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SwapShiftsChangeRequest.php | MIT |
public function setRecipientShiftId($val)
{
$this->_propDict["recipientShiftId"] = $val;
return $this;
} | Sets the recipientShiftId
Shift ID for the recipient user with whom the request is to swap.
@param string $val The recipientShiftId
@return SwapShiftsChangeRequest | setRecipientShiftId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SwapShiftsChangeRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SwapShiftsChangeRequest.php | MIT |
public function getValueType()
{
return 'DATE';
} | Returns the type of value.
This corresponds to the VALUE= parameter. Every property also has a
'default' valueType.
@return string | getValueType | 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 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 getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
} | Gets the displayName
The friendly name
@return string|null The displayName | getDisplayName | 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 setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
The friendly name
@param string $val The displayName
@return WindowsInformationProtectionAppLockerFile | setDisplayName | 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 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 setFile($val)
{
$this->_propDict["file"] = $val;
return $this;
} | Sets the file
File as a byte array
@param \GuzzleHttp\Psr7\Stream $val The file
@return WindowsInformationProtectionAppLockerFile | setFile | 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 getVersion()
{
if (array_key_exists("version", $this->_propDict)) {
return $this->_propDict["version"];
} else {
return null;
}
} | Gets the version
Version of the entity.
@return string|null The version | getVersion | 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 setVersion($val)
{
$this->_propDict["version"] = $val;
return $this;
} | Sets the version
Version of the entity.
@param string $val The version
@return WindowsInformationProtectionAppLockerFile | setVersion | 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 getBackgroundColor()
{
if (array_key_exists("backgroundColor", $this->_propDict)) {
return $this->_propDict["backgroundColor"];
} else {
return null;
}
} | Gets the backgroundColor
Color that appears in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF.
@return string|null The backgroundColor | getBackgroundColor | 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 setBackgroundColor($val)
{
$this->_propDict["backgroundColor"] = $val;
return $this;
} | Sets the backgroundColor
Color that appears in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF.
@param string $val The backgroundColor
@return OrganizationalBrandingProperties | setBackgroundColor | 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 getBackgroundImage()
{
if (array_key_exists("backgroundImage", $this->_propDict)) {
if (is_a($this->_propDict["backgroundImage"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["backgroundImage"])) {
return $this->_propDict["backgroundImage"];
} else {
$this->_propDict["backgroundImage"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["backgroundImage"]);
return $this->_propDict["backgroundImage"];
}
}
return null;
} | Gets the backgroundImage
Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
@return \GuzzleHttp\Psr7\Stream|null The backgroundImage | getBackgroundImage | 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 setBackgroundImage($val)
{
$this->_propDict["backgroundImage"] = $val;
return $this;
} | Sets the backgroundImage
Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster.
@param \GuzzleHttp\Psr7\Stream $val The backgroundImage
@return OrganizationalBrandingProperties | setBackgroundImage | 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 getBackgroundImageRelativeUrl()
{
if (array_key_exists("backgroundImageRelativeUrl", $this->_propDict)) {
return $this->_propDict["backgroundImageRelativeUrl"];
} else {
return null;
}
} | Gets the backgroundImageRelativeUrl
A relative URL for the backgroundImage 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 backgroundImageRelativeUrl | getBackgroundImageRelativeUrl | 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 setBackgroundImageRelativeUrl($val)
{
$this->_propDict["backgroundImageRelativeUrl"] = $val;
return $this;
} | Sets the backgroundImageRelativeUrl
A relative URL for the backgroundImage 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 backgroundImageRelativeUrl
@return OrganizationalBrandingProperties | setBackgroundImageRelativeUrl | 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 getBannerLogo()
{
if (array_key_exists("bannerLogo", $this->_propDict)) {
if (is_a($this->_propDict["bannerLogo"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["bannerLogo"])) {
return $this->_propDict["bannerLogo"];
} else {
$this->_propDict["bannerLogo"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["bannerLogo"]);
return $this->_propDict["bannerLogo"];
}
}
return null;
} | Gets the bannerLogo
A banner version of your company logo that appears on 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 bannerLogo | getBannerLogo | 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 setBannerLogo($val)
{
$this->_propDict["bannerLogo"] = $val;
return $this;
} | Sets the bannerLogo
A banner version of your company logo that appears on 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 bannerLogo
@return OrganizationalBrandingProperties | setBannerLogo | 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 getBannerLogoRelativeUrl()
{
if (array_key_exists("bannerLogoRelativeUrl", $this->_propDict)) {
return $this->_propDict["bannerLogoRelativeUrl"];
} else {
return null;
}
} | Gets the bannerLogoRelativeUrl
A relative URL for the bannerLogo 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 bannerLogoRelativeUrl | getBannerLogoRelativeUrl | 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 setBannerLogoRelativeUrl($val)
{
$this->_propDict["bannerLogoRelativeUrl"] = $val;
return $this;
} | Sets the bannerLogoRelativeUrl
A relative URL for the bannerLogo 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 bannerLogoRelativeUrl
@return OrganizationalBrandingProperties | setBannerLogoRelativeUrl | 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 getCdnList()
{
if (array_key_exists("cdnList", $this->_propDict)) {
return $this->_propDict["cdnList"];
} else {
return null;
}
} | Gets the cdnList
A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only.
@return array|null The cdnList | getCdnList | 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 setCdnList($val)
{
$this->_propDict["cdnList"] = $val;
return $this;
} | Sets the cdnList
A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only.
@param string[] $val The cdnList
@return OrganizationalBrandingProperties | setCdnList | 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 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 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.