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 |
---|---|---|---|---|---|---|---|
protected function write(array $record)
{
self::$json['rows'][] = $record['formatted'];
$this->send();
} | Creates & sends header for a record
@see sendHeader()
@see send()
@param array $record | write | php | xiebruce/PicUploader | vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | MIT |
protected function sendHeader($header, $content)
{
if (!headers_sent() && self::$sendHeaders) {
header(sprintf('%s: %s', $header, $content));
}
} | Send header string to the client
@param string $header
@param string $content | sendHeader | php | xiebruce/PicUploader | vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | MIT |
protected function headersAccepted()
{
if (empty($_SERVER['HTTP_USER_AGENT'])) {
return false;
}
return preg_match(self::USER_AGENT_REGEX, $_SERVER['HTTP_USER_AGENT']);
} | Verifies if the headers are accepted by the current user agent
@return bool | headersAccepted | php | xiebruce/PicUploader | vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | MIT |
public function __get($property)
{
if ('sendHeaders' !== $property) {
throw new \InvalidArgumentException('Undefined property '.$property);
}
return static::$sendHeaders;
} | BC getter for the sendHeaders property that has been made static | __get | php | xiebruce/PicUploader | vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | MIT |
public function __set($property, $value)
{
if ('sendHeaders' !== $property) {
throw new \InvalidArgumentException('Undefined property '.$property);
}
static::$sendHeaders = $value;
} | BC setter for the sendHeaders property that has been made static | __set | php | xiebruce/PicUploader | vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php | MIT |
public function setRawMimeDirValue($val)
{
$this->setValue((int) $val);
} | Sets a raw value coming from a mimedir (iCalendar/vCard) file.
This has been 'unfolded', so only 1 line will be passed. Unescaping is
not yet done, but parameters are not included.
@param string $val | setRawMimeDirValue | php | xiebruce/PicUploader | vendor/sabre/vobject/lib/Property/IntegerValue.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Property/IntegerValue.php | MIT |
public function getRawMimeDirValue()
{
return $this->value;
} | Returns a raw mime-dir representation of the value.
@return string | getRawMimeDirValue | php | xiebruce/PicUploader | vendor/sabre/vobject/lib/Property/IntegerValue.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Property/IntegerValue.php | MIT |
public function getValueType()
{
return 'INTEGER';
} | 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/IntegerValue.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Property/IntegerValue.php | MIT |
public function getJsonValue()
{
return [(int) $this->getValue()];
} | Returns the value, in the format it should be encoded for json.
This method must always return an array.
@return array | getJsonValue | php | xiebruce/PicUploader | vendor/sabre/vobject/lib/Property/IntegerValue.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Property/IntegerValue.php | MIT |
public function setXmlValue(array $value)
{
$value = array_map('intval', $value);
parent::setXmlValue($value);
} | Hydrate data from a XML subtree, as it would appear in a xCard or xCal
object.
@param array $value | setXmlValue | php | xiebruce/PicUploader | vendor/sabre/vobject/lib/Property/IntegerValue.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Property/IntegerValue.php | MIT |
public function getProperties()
{
return $this->_propDict;
} | Gets the property dictionary of the CrossTenantAccessPolicyConfigurationPartner
@return array The list of properties | getProperties | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getAutomaticUserConsentSettings()
{
if (array_key_exists("automaticUserConsentSettings", $this->_propDict)) {
if (is_a($this->_propDict["automaticUserConsentSettings"], "\Beta\Microsoft\Graph\Model\InboundOutboundPolicyConfiguration") || is_null($this->_propDict["automaticUserConsentSettings"])) {
return $this->_propDict["automaticUserConsentSettings"];
} else {
$this->_propDict["automaticUserConsentSettings"] = new InboundOutboundPolicyConfiguration($this->_propDict["automaticUserConsentSettings"]);
return $this->_propDict["automaticUserConsentSettings"];
}
}
return null;
} | Gets the automaticUserConsentSettings
Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false.
@return InboundOutboundPolicyConfiguration|null The automaticUserConsentSettings | getAutomaticUserConsentSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setAutomaticUserConsentSettings($val)
{
$this->_propDict["automaticUserConsentSettings"] = $val;
return $this;
} | Sets the automaticUserConsentSettings
Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false.
@param InboundOutboundPolicyConfiguration $val The automaticUserConsentSettings
@return CrossTenantAccessPolicyConfigurationPartner | setAutomaticUserConsentSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bCollaborationInbound()
{
if (array_key_exists("b2bCollaborationInbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bCollaborationInbound"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bCollaborationInbound"])) {
return $this->_propDict["b2bCollaborationInbound"];
} else {
$this->_propDict["b2bCollaborationInbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bCollaborationInbound"]);
return $this->_propDict["b2bCollaborationInbound"];
}
}
return null;
} | Gets the b2bCollaborationInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration.
@return CrossTenantAccessPolicyB2BSetting|null The b2bCollaborationInbound | getB2bCollaborationInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bCollaborationInbound($val)
{
$this->_propDict["b2bCollaborationInbound"] = $val;
return $this;
} | Sets the b2bCollaborationInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration.
@param CrossTenantAccessPolicyB2BSetting $val The b2bCollaborationInbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bCollaborationInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bCollaborationOutbound()
{
if (array_key_exists("b2bCollaborationOutbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bCollaborationOutbound"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bCollaborationOutbound"])) {
return $this->_propDict["b2bCollaborationOutbound"];
} else {
$this->_propDict["b2bCollaborationOutbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bCollaborationOutbound"]);
return $this->_propDict["b2bCollaborationOutbound"];
}
}
return null;
} | Gets the b2bCollaborationOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration.
@return CrossTenantAccessPolicyB2BSetting|null The b2bCollaborationOutbound | getB2bCollaborationOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bCollaborationOutbound($val)
{
$this->_propDict["b2bCollaborationOutbound"] = $val;
return $this;
} | Sets the b2bCollaborationOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration.
@param CrossTenantAccessPolicyB2BSetting $val The b2bCollaborationOutbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bCollaborationOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bDirectConnectInbound()
{
if (array_key_exists("b2bDirectConnectInbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bDirectConnectInbound"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bDirectConnectInbound"])) {
return $this->_propDict["b2bDirectConnectInbound"];
} else {
$this->_propDict["b2bDirectConnectInbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bDirectConnectInbound"]);
return $this->_propDict["b2bDirectConnectInbound"];
}
}
return null;
} | Gets the b2bDirectConnectInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
@return CrossTenantAccessPolicyB2BSetting|null The b2bDirectConnectInbound | getB2bDirectConnectInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bDirectConnectInbound($val)
{
$this->_propDict["b2bDirectConnectInbound"] = $val;
return $this;
} | Sets the b2bDirectConnectInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
@param CrossTenantAccessPolicyB2BSetting $val The b2bDirectConnectInbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bDirectConnectInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bDirectConnectOutbound()
{
if (array_key_exists("b2bDirectConnectOutbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bDirectConnectOutbound"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bDirectConnectOutbound"])) {
return $this->_propDict["b2bDirectConnectOutbound"];
} else {
$this->_propDict["b2bDirectConnectOutbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bDirectConnectOutbound"]);
return $this->_propDict["b2bDirectConnectOutbound"];
}
}
return null;
} | Gets the b2bDirectConnectOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect.
@return CrossTenantAccessPolicyB2BSetting|null The b2bDirectConnectOutbound | getB2bDirectConnectOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bDirectConnectOutbound($val)
{
$this->_propDict["b2bDirectConnectOutbound"] = $val;
return $this;
} | Sets the b2bDirectConnectOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect.
@param CrossTenantAccessPolicyB2BSetting $val The b2bDirectConnectOutbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bDirectConnectOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getInboundTrust()
{
if (array_key_exists("inboundTrust", $this->_propDict)) {
if (is_a($this->_propDict["inboundTrust"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyInboundTrust") || is_null($this->_propDict["inboundTrust"])) {
return $this->_propDict["inboundTrust"];
} else {
$this->_propDict["inboundTrust"] = new CrossTenantAccessPolicyInboundTrust($this->_propDict["inboundTrust"]);
return $this->_propDict["inboundTrust"];
}
}
return null;
} | Gets the inboundTrust
Determines the partner-specific configuration for trusting other Conditional Access claims from external Azure AD organizations.
@return CrossTenantAccessPolicyInboundTrust|null The inboundTrust | getInboundTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setInboundTrust($val)
{
$this->_propDict["inboundTrust"] = $val;
return $this;
} | Sets the inboundTrust
Determines the partner-specific configuration for trusting other Conditional Access claims from external Azure AD organizations.
@param CrossTenantAccessPolicyInboundTrust $val The inboundTrust
@return CrossTenantAccessPolicyConfigurationPartner | setInboundTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getIsServiceProvider()
{
if (array_key_exists("isServiceProvider", $this->_propDict)) {
return $this->_propDict["isServiceProvider"];
} else {
return null;
}
} | Gets the isServiceProvider
Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization.
@return bool|null The isServiceProvider | getIsServiceProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setIsServiceProvider($val)
{
$this->_propDict["isServiceProvider"] = boolval($val);
return $this;
} | Sets the isServiceProvider
Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization.
@param bool $val The isServiceProvider
@return CrossTenantAccessPolicyConfigurationPartner | setIsServiceProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getTenantId()
{
if (array_key_exists("tenantId", $this->_propDict)) {
return $this->_propDict["tenantId"];
} else {
return null;
}
} | Gets the tenantId
The tenant identifier for the partner Azure AD organization. Read-only. Key.
@return string|null The tenantId | getTenantId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setTenantId($val)
{
$this->_propDict["tenantId"] = $val;
return $this;
} | Sets the tenantId
The tenant identifier for the partner Azure AD organization. Read-only. Key.
@param string $val The tenantId
@return CrossTenantAccessPolicyConfigurationPartner | setTenantId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getIdentitySynchronization()
{
if (array_key_exists("identitySynchronization", $this->_propDict)) {
if (is_a($this->_propDict["identitySynchronization"], "\Beta\Microsoft\Graph\Model\CrossTenantIdentitySyncPolicyPartner") || is_null($this->_propDict["identitySynchronization"])) {
return $this->_propDict["identitySynchronization"];
} else {
$this->_propDict["identitySynchronization"] = new CrossTenantIdentitySyncPolicyPartner($this->_propDict["identitySynchronization"]);
return $this->_propDict["identitySynchronization"];
}
}
return null;
} | Gets the identitySynchronization
Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another.
@return CrossTenantIdentitySyncPolicyPartner|null The identitySynchronization | getIdentitySynchronization | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setIdentitySynchronization($val)
{
$this->_propDict["identitySynchronization"] = $val;
return $this;
} | Sets the identitySynchronization
Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another.
@param CrossTenantIdentitySyncPolicyPartner $val The identitySynchronization
@return CrossTenantAccessPolicyConfigurationPartner | setIdentitySynchronization | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function jsonSerialize()
{
$serializableProperties = $this->getProperties();
foreach ($serializableProperties as $property => $val) {
if (is_a($val, "\DateTime")) {
$serializableProperties[$property] = $val->format(\DateTime::RFC3339);
} else if (is_a($val, "\Microsoft\Graph\Core\Enum")) {
$serializableProperties[$property] = $val->value();
} else if (is_a($val, "\Entity")) {
$serializableProperties[$property] = $val->jsonSerialize();
} else if (is_a($val, "\GuzzleHttp\Psr7\Stream")) {
$serializableProperties[$property] = (string) $val;
}
}
return $serializableProperties;
} | Serializes the object by property array
Manually serialize DateTime into RFC3339 format
@return array The list of properties | jsonSerialize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getContentBytes()
{
if (array_key_exists("contentBytes", $this->_propDict)) {
if (is_a($this->_propDict["contentBytes"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["contentBytes"])) {
return $this->_propDict["contentBytes"];
} else {
$this->_propDict["contentBytes"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["contentBytes"]);
return $this->_propDict["contentBytes"];
}
}
return null;
} | Gets the contentBytes
Write only. Bytes for the hosted content (such as images).
@return \GuzzleHttp\Psr7\Stream|null The contentBytes | getContentBytes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamworkHostedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamworkHostedContent.php | MIT |
public function setContentBytes($val)
{
$this->_propDict["contentBytes"] = $val;
return $this;
} | Sets the contentBytes
Write only. Bytes for the hosted content (such as images).
@param \GuzzleHttp\Psr7\Stream $val The contentBytes
@return TeamworkHostedContent | setContentBytes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamworkHostedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamworkHostedContent.php | MIT |
public function getContentType()
{
if (array_key_exists("contentType", $this->_propDict)) {
return $this->_propDict["contentType"];
} else {
return null;
}
} | Gets the contentType
Write only. Content type, such as image/png, image/jpg.
@return string|null The contentType | getContentType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamworkHostedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamworkHostedContent.php | MIT |
public function setContentType($val)
{
$this->_propDict["contentType"] = $val;
return $this;
} | Sets the contentType
Write only. Content type, such as image/png, image/jpg.
@param string $val The contentType
@return TeamworkHostedContent | setContentType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamworkHostedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TeamworkHostedContent.php | MIT |
public function getBottomMargins()
{
if (array_key_exists("bottomMargins", $this->_propDict)) {
return $this->_propDict["bottomMargins"];
} else {
return null;
}
} | Gets the bottomMargins
A list of supported bottom margins(in microns) for the printer.
@return int|null The bottomMargins | getBottomMargins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setBottomMargins($val)
{
$this->_propDict["bottomMargins"] = $val;
return $this;
} | Sets the bottomMargins
A list of supported bottom margins(in microns) for the printer.
@param int $val The value of the bottomMargins
@return PrinterCapabilities | setBottomMargins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getCollation()
{
if (array_key_exists("collation", $this->_propDict)) {
return $this->_propDict["collation"];
} else {
return null;
}
} | Gets the collation
True if the printer supports collating when printing muliple copies of a multi-page document; false otherwise.
@return bool|null The collation | getCollation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setCollation($val)
{
$this->_propDict["collation"] = $val;
return $this;
} | Sets the collation
True if the printer supports collating when printing muliple copies of a multi-page document; false otherwise.
@param bool $val The value of the collation
@return PrinterCapabilities | setCollation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getColorModes()
{
if (array_key_exists("colorModes", $this->_propDict)) {
if (is_a($this->_propDict["colorModes"], "\Microsoft\Graph\Model\PrintColorMode") || is_null($this->_propDict["colorModes"])) {
return $this->_propDict["colorModes"];
} else {
$this->_propDict["colorModes"] = new PrintColorMode($this->_propDict["colorModes"]);
return $this->_propDict["colorModes"];
}
}
return null;
} | Gets the colorModes
The color modes supported by the printer. Valid values are described in the following table.
@return PrintColorMode|null The colorModes | getColorModes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setColorModes($val)
{
$this->_propDict["colorModes"] = $val;
return $this;
} | Sets the colorModes
The color modes supported by the printer. Valid values are described in the following table.
@param PrintColorMode $val The value to assign to the colorModes
@return PrinterCapabilities The PrinterCapabilities | setColorModes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getContentTypes()
{
if (array_key_exists("contentTypes", $this->_propDict)) {
return $this->_propDict["contentTypes"];
} else {
return null;
}
} | Gets the contentTypes
A list of supported content (MIME) types that the printer supports. It is not guaranteed that the Universal Print service supports printing all of these MIME types.
@return string|null The contentTypes | getContentTypes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setContentTypes($val)
{
$this->_propDict["contentTypes"] = $val;
return $this;
} | Sets the contentTypes
A list of supported content (MIME) types that the printer supports. It is not guaranteed that the Universal Print service supports printing all of these MIME types.
@param string $val The value of the contentTypes
@return PrinterCapabilities | setContentTypes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getCopiesPerJob()
{
if (array_key_exists("copiesPerJob", $this->_propDict)) {
if (is_a($this->_propDict["copiesPerJob"], "\Microsoft\Graph\Model\IntegerRange") || is_null($this->_propDict["copiesPerJob"])) {
return $this->_propDict["copiesPerJob"];
} else {
$this->_propDict["copiesPerJob"] = new IntegerRange($this->_propDict["copiesPerJob"]);
return $this->_propDict["copiesPerJob"];
}
}
return null;
} | Gets the copiesPerJob
The range of copies per job supported by the printer.
@return IntegerRange|null The copiesPerJob | getCopiesPerJob | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setCopiesPerJob($val)
{
$this->_propDict["copiesPerJob"] = $val;
return $this;
} | Sets the copiesPerJob
The range of copies per job supported by the printer.
@param IntegerRange $val The value to assign to the copiesPerJob
@return PrinterCapabilities The PrinterCapabilities | setCopiesPerJob | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getDpis()
{
if (array_key_exists("dpis", $this->_propDict)) {
return $this->_propDict["dpis"];
} else {
return null;
}
} | Gets the dpis
The list of print resolutions in DPI that are supported by the printer.
@return int|null The dpis | getDpis | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setDpis($val)
{
$this->_propDict["dpis"] = $val;
return $this;
} | Sets the dpis
The list of print resolutions in DPI that are supported by the printer.
@param int $val The value of the dpis
@return PrinterCapabilities | setDpis | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getDuplexModes()
{
if (array_key_exists("duplexModes", $this->_propDict)) {
if (is_a($this->_propDict["duplexModes"], "\Microsoft\Graph\Model\PrintDuplexMode") || is_null($this->_propDict["duplexModes"])) {
return $this->_propDict["duplexModes"];
} else {
$this->_propDict["duplexModes"] = new PrintDuplexMode($this->_propDict["duplexModes"]);
return $this->_propDict["duplexModes"];
}
}
return null;
} | Gets the duplexModes
The list of duplex modes that are supported by the printer. Valid values are described in the following table.
@return PrintDuplexMode|null The duplexModes | getDuplexModes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setDuplexModes($val)
{
$this->_propDict["duplexModes"] = $val;
return $this;
} | Sets the duplexModes
The list of duplex modes that are supported by the printer. Valid values are described in the following table.
@param PrintDuplexMode $val The value to assign to the duplexModes
@return PrinterCapabilities The PrinterCapabilities | setDuplexModes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getFeedOrientations()
{
if (array_key_exists("feedOrientations", $this->_propDict)) {
if (is_a($this->_propDict["feedOrientations"], "\Microsoft\Graph\Model\PrinterFeedOrientation") || is_null($this->_propDict["feedOrientations"])) {
return $this->_propDict["feedOrientations"];
} else {
$this->_propDict["feedOrientations"] = new PrinterFeedOrientation($this->_propDict["feedOrientations"]);
return $this->_propDict["feedOrientations"];
}
}
return null;
} | Gets the feedOrientations
The list of feed orientations that are supported by the printer.
@return PrinterFeedOrientation|null The feedOrientations | getFeedOrientations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setFeedOrientations($val)
{
$this->_propDict["feedOrientations"] = $val;
return $this;
} | Sets the feedOrientations
The list of feed orientations that are supported by the printer.
@param PrinterFeedOrientation $val The value to assign to the feedOrientations
@return PrinterCapabilities The PrinterCapabilities | setFeedOrientations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.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
Finishing processes the printer supports for a printed document.
@return PrintFinishing|null The finishings | getFinishings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setFinishings($val)
{
$this->_propDict["finishings"] = $val;
return $this;
} | Sets the finishings
Finishing processes the printer supports for a printed document.
@param PrintFinishing $val The value to assign to the finishings
@return PrinterCapabilities The PrinterCapabilities | setFinishings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getInputBins()
{
if (array_key_exists("inputBins", $this->_propDict)) {
return $this->_propDict["inputBins"];
} else {
return null;
}
} | Gets the inputBins
Supported input bins for the printer.
@return string|null The inputBins | getInputBins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setInputBins($val)
{
$this->_propDict["inputBins"] = $val;
return $this;
} | Sets the inputBins
Supported input bins for the printer.
@param string $val The value of the inputBins
@return PrinterCapabilities | setInputBins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getIsColorPrintingSupported()
{
if (array_key_exists("isColorPrintingSupported", $this->_propDict)) {
return $this->_propDict["isColorPrintingSupported"];
} else {
return null;
}
} | Gets the isColorPrintingSupported
True if color printing is supported by the printer; false otherwise. Read-only.
@return bool|null The isColorPrintingSupported | getIsColorPrintingSupported | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setIsColorPrintingSupported($val)
{
$this->_propDict["isColorPrintingSupported"] = $val;
return $this;
} | Sets the isColorPrintingSupported
True if color printing is supported by the printer; false otherwise. Read-only.
@param bool $val The value of the isColorPrintingSupported
@return PrinterCapabilities | setIsColorPrintingSupported | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getIsPageRangeSupported()
{
if (array_key_exists("isPageRangeSupported", $this->_propDict)) {
return $this->_propDict["isPageRangeSupported"];
} else {
return null;
}
} | Gets the isPageRangeSupported
True if the printer supports printing by page ranges; false otherwise.
@return bool|null The isPageRangeSupported | getIsPageRangeSupported | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setIsPageRangeSupported($val)
{
$this->_propDict["isPageRangeSupported"] = $val;
return $this;
} | Sets the isPageRangeSupported
True if the printer supports printing by page ranges; false otherwise.
@param bool $val The value of the isPageRangeSupported
@return PrinterCapabilities | setIsPageRangeSupported | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getLeftMargins()
{
if (array_key_exists("leftMargins", $this->_propDict)) {
return $this->_propDict["leftMargins"];
} else {
return null;
}
} | Gets the leftMargins
A list of supported left margins(in microns) for the printer.
@return int|null The leftMargins | getLeftMargins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setLeftMargins($val)
{
$this->_propDict["leftMargins"] = $val;
return $this;
} | Sets the leftMargins
A list of supported left margins(in microns) for the printer.
@param int $val The value of the leftMargins
@return PrinterCapabilities | setLeftMargins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getMediaColors()
{
if (array_key_exists("mediaColors", $this->_propDict)) {
return $this->_propDict["mediaColors"];
} else {
return null;
}
} | Gets the mediaColors
The media (i.e., paper) colors supported by the printer.
@return string|null The mediaColors | getMediaColors | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setMediaColors($val)
{
$this->_propDict["mediaColors"] = $val;
return $this;
} | Sets the mediaColors
The media (i.e., paper) colors supported by the printer.
@param string $val The value of the mediaColors
@return PrinterCapabilities | setMediaColors | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getMediaSizes()
{
if (array_key_exists("mediaSizes", $this->_propDict)) {
return $this->_propDict["mediaSizes"];
} else {
return null;
}
} | Gets the mediaSizes
The media sizes supported by the printer. Supports standard size names for ISO and ANSI media sizes. Valid values are in the following table.
@return string|null The mediaSizes | getMediaSizes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setMediaSizes($val)
{
$this->_propDict["mediaSizes"] = $val;
return $this;
} | Sets the mediaSizes
The media sizes supported by the printer. Supports standard size names for ISO and ANSI media sizes. Valid values are in the following table.
@param string $val The value of the mediaSizes
@return PrinterCapabilities | setMediaSizes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getMediaTypes()
{
if (array_key_exists("mediaTypes", $this->_propDict)) {
return $this->_propDict["mediaTypes"];
} else {
return null;
}
} | Gets the mediaTypes
The media types supported by the printer.
@return string|null The mediaTypes | getMediaTypes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setMediaTypes($val)
{
$this->_propDict["mediaTypes"] = $val;
return $this;
} | Sets the mediaTypes
The media types supported by the printer.
@param string $val The value of the mediaTypes
@return PrinterCapabilities | setMediaTypes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getMultipageLayouts()
{
if (array_key_exists("multipageLayouts", $this->_propDict)) {
if (is_a($this->_propDict["multipageLayouts"], "\Microsoft\Graph\Model\PrintMultipageLayout") || is_null($this->_propDict["multipageLayouts"])) {
return $this->_propDict["multipageLayouts"];
} else {
$this->_propDict["multipageLayouts"] = new PrintMultipageLayout($this->_propDict["multipageLayouts"]);
return $this->_propDict["multipageLayouts"];
}
}
return null;
} | Gets the multipageLayouts
The presentation directions supported by the printer. Supported values are described in the following table.
@return PrintMultipageLayout|null The multipageLayouts | getMultipageLayouts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setMultipageLayouts($val)
{
$this->_propDict["multipageLayouts"] = $val;
return $this;
} | Sets the multipageLayouts
The presentation directions supported by the printer. Supported values are described in the following table.
@param PrintMultipageLayout $val The value to assign to the multipageLayouts
@return PrinterCapabilities The PrinterCapabilities | setMultipageLayouts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getOrientations()
{
if (array_key_exists("orientations", $this->_propDict)) {
if (is_a($this->_propDict["orientations"], "\Microsoft\Graph\Model\PrintOrientation") || is_null($this->_propDict["orientations"])) {
return $this->_propDict["orientations"];
} else {
$this->_propDict["orientations"] = new PrintOrientation($this->_propDict["orientations"]);
return $this->_propDict["orientations"];
}
}
return null;
} | Gets the orientations
The print orientations supported by the printer. Valid values are described in the following table.
@return PrintOrientation|null The orientations | getOrientations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setOrientations($val)
{
$this->_propDict["orientations"] = $val;
return $this;
} | Sets the orientations
The print orientations supported by the printer. Valid values are described in the following table.
@param PrintOrientation $val The value to assign to the orientations
@return PrinterCapabilities The PrinterCapabilities | setOrientations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getOutputBins()
{
if (array_key_exists("outputBins", $this->_propDict)) {
return $this->_propDict["outputBins"];
} else {
return null;
}
} | Gets the outputBins
The printer's supported output bins (trays).
@return string|null The outputBins | getOutputBins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setOutputBins($val)
{
$this->_propDict["outputBins"] = $val;
return $this;
} | Sets the outputBins
The printer's supported output bins (trays).
@param string $val The value of the outputBins
@return PrinterCapabilities | setOutputBins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getPagesPerSheet()
{
if (array_key_exists("pagesPerSheet", $this->_propDict)) {
return $this->_propDict["pagesPerSheet"];
} else {
return null;
}
} | Gets the pagesPerSheet
Supported number of Input Pages to impose upon a single Impression.
@return int|null The pagesPerSheet | getPagesPerSheet | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setPagesPerSheet($val)
{
$this->_propDict["pagesPerSheet"] = $val;
return $this;
} | Sets the pagesPerSheet
Supported number of Input Pages to impose upon a single Impression.
@param int $val The value of the pagesPerSheet
@return PrinterCapabilities | setPagesPerSheet | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getQualities()
{
if (array_key_exists("qualities", $this->_propDict)) {
if (is_a($this->_propDict["qualities"], "\Microsoft\Graph\Model\PrintQuality") || is_null($this->_propDict["qualities"])) {
return $this->_propDict["qualities"];
} else {
$this->_propDict["qualities"] = new PrintQuality($this->_propDict["qualities"]);
return $this->_propDict["qualities"];
}
}
return null;
} | Gets the qualities
The print qualities supported by the printer.
@return PrintQuality|null The qualities | getQualities | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setQualities($val)
{
$this->_propDict["qualities"] = $val;
return $this;
} | Sets the qualities
The print qualities supported by the printer.
@param PrintQuality $val The value to assign to the qualities
@return PrinterCapabilities The PrinterCapabilities | setQualities | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getRightMargins()
{
if (array_key_exists("rightMargins", $this->_propDict)) {
return $this->_propDict["rightMargins"];
} else {
return null;
}
} | Gets the rightMargins
A list of supported right margins(in microns) for the printer.
@return int|null The rightMargins | getRightMargins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setRightMargins($val)
{
$this->_propDict["rightMargins"] = $val;
return $this;
} | Sets the rightMargins
A list of supported right margins(in microns) for the printer.
@param int $val The value of the rightMargins
@return PrinterCapabilities | setRightMargins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getScalings()
{
if (array_key_exists("scalings", $this->_propDict)) {
if (is_a($this->_propDict["scalings"], "\Microsoft\Graph\Model\PrintScaling") || is_null($this->_propDict["scalings"])) {
return $this->_propDict["scalings"];
} else {
$this->_propDict["scalings"] = new PrintScaling($this->_propDict["scalings"]);
return $this->_propDict["scalings"];
}
}
return null;
} | Gets the scalings
Supported print scalings.
@return PrintScaling|null The scalings | getScalings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setScalings($val)
{
$this->_propDict["scalings"] = $val;
return $this;
} | Sets the scalings
Supported print scalings.
@param PrintScaling $val The value to assign to the scalings
@return PrinterCapabilities The PrinterCapabilities | setScalings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getSupportsFitPdfToPage()
{
if (array_key_exists("supportsFitPdfToPage", $this->_propDict)) {
return $this->_propDict["supportsFitPdfToPage"];
} else {
return null;
}
} | Gets the supportsFitPdfToPage
True if the printer supports scaling PDF pages to match the print media size; false otherwise.
@return bool|null The supportsFitPdfToPage | getSupportsFitPdfToPage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setSupportsFitPdfToPage($val)
{
$this->_propDict["supportsFitPdfToPage"] = $val;
return $this;
} | Sets the supportsFitPdfToPage
True if the printer supports scaling PDF pages to match the print media size; false otherwise.
@param bool $val The value of the supportsFitPdfToPage
@return PrinterCapabilities | setSupportsFitPdfToPage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getTopMargins()
{
if (array_key_exists("topMargins", $this->_propDict)) {
return $this->_propDict["topMargins"];
} else {
return null;
}
} | Gets the topMargins
A list of supported top margins(in microns) for the printer.
@return int|null The topMargins | getTopMargins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function setTopMargins($val)
{
$this->_propDict["topMargins"] = $val;
return $this;
} | Sets the topMargins
A list of supported top margins(in microns) for the printer.
@param int $val The value of the topMargins
@return PrinterCapabilities | setTopMargins | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php | MIT |
public function getFieldId()
{
if (array_key_exists("fieldId", $this->_propDict)) {
return $this->_propDict["fieldId"];
} else {
return null;
}
} | Gets the fieldId
The name of the field for this credential. e.g, username or password or phoneNumber. This is defined by the application. Must match what is in the html field on singleSignOnSettings/password object.
@return string|null The fieldId | getFieldId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | MIT |
public function setFieldId($val)
{
$this->_propDict["fieldId"] = $val;
return $this;
} | Sets the fieldId
The name of the field for this credential. e.g, username or password or phoneNumber. This is defined by the application. Must match what is in the html field on singleSignOnSettings/password object.
@param string $val The value of the fieldId
@return Credential | setFieldId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | MIT |
public function getType()
{
if (array_key_exists("type", $this->_propDict)) {
return $this->_propDict["type"];
} else {
return null;
}
} | Gets the type
The type for this credential. Valid values: username, password, or other.
@return string|null The type | getType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | MIT |
public function setType($val)
{
$this->_propDict["type"] = $val;
return $this;
} | Sets the type
The type for this credential. Valid values: username, password, or other.
@param string $val The value of the type
@return Credential | setType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | MIT |
public function getValue()
{
if (array_key_exists("value", $this->_propDict)) {
return $this->_propDict["value"];
} else {
return null;
}
} | Gets the value
The value for this credential. e.g, mysuperhiddenpassword. Note the value for passwords is write-only, the value can never be read back.
@return string|null The value | getValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | MIT |
public function setValue($val)
{
$this->_propDict["value"] = $val;
return $this;
} | Sets the value
The value for this credential. e.g, mysuperhiddenpassword. Note the value for passwords is write-only, the value can never be read back.
@param string $val The value of the value
@return Credential | setValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Credential.php | MIT |
public function getWin32App()
{
if (array_key_exists("win32App", $this->_propDict)) {
if (is_a($this->_propDict["win32App"], "\Beta\Microsoft\Graph\Model\WindowsKioskWin32App") || is_null($this->_propDict["win32App"])) {
return $this->_propDict["win32App"];
} else {
$this->_propDict["win32App"] = new WindowsKioskWin32App($this->_propDict["win32App"]);
return $this->_propDict["win32App"];
}
}
return null;
} | Gets the win32App
This is the win32 app that will be available to launch use while in Kiosk Mode
@return WindowsKioskWin32App|null The win32App | getWin32App | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsKioskSingleWin32App.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsKioskSingleWin32App.php | MIT |
public function setWin32App($val)
{
$this->_propDict["win32App"] = $val;
return $this;
} | Sets the win32App
This is the win32 app that will be available to launch use while in Kiosk Mode
@param WindowsKioskWin32App $val The value to assign to the win32App
@return WindowsKioskSingleWin32App The WindowsKioskSingleWin32App | setWin32App | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsKioskSingleWin32App.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsKioskSingleWin32App.php | MIT |
public function getSite()
{
if (array_key_exists("site", $this->_propDict)) {
if (is_a($this->_propDict["site"], "\Microsoft\Graph\Model\Site") || is_null($this->_propDict["site"])) {
return $this->_propDict["site"];
} else {
$this->_propDict["site"] = new \Microsoft\Graph\Model\Site($this->_propDict["site"]);
return $this->_propDict["site"];
}
}
return null;
} | Gets the site
The SharePoint site associated with the siteSource.
@return \Microsoft\Graph\Model\Site|null The site | getSite | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/SiteSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/SiteSource.php | MIT |
public function setSite($val)
{
$this->_propDict["site"] = $val;
return $this;
} | Sets the site
The SharePoint site associated with the siteSource.
@param \Microsoft\Graph\Model\Site $val The site
@return SiteSource | setSite | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/SiteSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/SiteSource.php | MIT |
public function getDataLocationCode()
{
if (array_key_exists("dataLocationCode", $this->_propDict)) {
return $this->_propDict["dataLocationCode"];
} else {
return null;
}
} | Gets the dataLocationCode
The geographic region code for where this site collection resides. Read-only.
@return string|null The dataLocationCode | getDataLocationCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | MIT |
public function setDataLocationCode($val)
{
$this->_propDict["dataLocationCode"] = $val;
return $this;
} | Sets the dataLocationCode
The geographic region code for where this site collection resides. Read-only.
@param string $val The value of the dataLocationCode
@return SiteCollection | setDataLocationCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | MIT |
public function getHostname()
{
if (array_key_exists("hostname", $this->_propDict)) {
return $this->_propDict["hostname"];
} else {
return null;
}
} | Gets the hostname
The hostname for the site collection. Read-only.
@return string|null The hostname | getHostname | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | MIT |
public function setHostname($val)
{
$this->_propDict["hostname"] = $val;
return $this;
} | Sets the hostname
The hostname for the site collection. Read-only.
@param string $val The value of the hostname
@return SiteCollection | setHostname | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | MIT |
public function getRoot()
{
if (array_key_exists("root", $this->_propDict)) {
if (is_a($this->_propDict["root"], "\Beta\Microsoft\Graph\Model\Root") || is_null($this->_propDict["root"])) {
return $this->_propDict["root"];
} else {
$this->_propDict["root"] = new Root($this->_propDict["root"]);
return $this->_propDict["root"];
}
}
return null;
} | Gets the root
If present, indicates that this is a root site collection in SharePoint. Read-only.
@return Root|null The root | getRoot | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | MIT |
public function setRoot($val)
{
$this->_propDict["root"] = $val;
return $this;
} | Sets the root
If present, indicates that this is a root site collection in SharePoint. Read-only.
@param Root $val The value to assign to the root
@return SiteCollection The SiteCollection | setRoot | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.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.