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 getKeyUsage()
{
if (array_key_exists("keyUsage", $this->_propDict)) {
if (is_a($this->_propDict["keyUsage"], "\Beta\Microsoft\Graph\Model\KeyUsages") || is_null($this->_propDict["keyUsage"])) {
return $this->_propDict["keyUsage"];
} else {
$this->_propDict["keyUsage"] = new KeyUsages($this->_propDict["keyUsage"]);
return $this->_propDict["keyUsage"];
}
}
return null;
} | Gets the keyUsage
SCEP Key Usage. Possible values are: keyEncipherment, digitalSignature.
@return KeyUsages|null The keyUsage | getKeyUsage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function setKeyUsage($val)
{
$this->_propDict["keyUsage"] = $val;
return $this;
} | Sets the keyUsage
SCEP Key Usage. Possible values are: keyEncipherment, digitalSignature.
@param KeyUsages $val The keyUsage
@return AndroidForWorkScepCertificateProfile | setKeyUsage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function getScepServerUrls()
{
if (array_key_exists("scepServerUrls", $this->_propDict)) {
return $this->_propDict["scepServerUrls"];
} else {
return null;
}
} | Gets the scepServerUrls
SCEP Server Url(s)
@return array|null The scepServerUrls | getScepServerUrls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function setScepServerUrls($val)
{
$this->_propDict["scepServerUrls"] = $val;
return $this;
} | Sets the scepServerUrls
SCEP Server Url(s)
@param string[] $val The scepServerUrls
@return AndroidForWorkScepCertificateProfile | setScepServerUrls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function getSubjectAlternativeNameFormatString()
{
if (array_key_exists("subjectAlternativeNameFormatString", $this->_propDict)) {
return $this->_propDict["subjectAlternativeNameFormatString"];
} else {
return null;
}
} | Gets the subjectAlternativeNameFormatString
Custom String that defines the AAD Attribute.
@return string|null The subjectAlternativeNameFormatString | getSubjectAlternativeNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function setSubjectAlternativeNameFormatString($val)
{
$this->_propDict["subjectAlternativeNameFormatString"] = $val;
return $this;
} | Sets the subjectAlternativeNameFormatString
Custom String that defines the AAD Attribute.
@param string $val The subjectAlternativeNameFormatString
@return AndroidForWorkScepCertificateProfile | setSubjectAlternativeNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function getSubjectNameFormatString()
{
if (array_key_exists("subjectNameFormatString", $this->_propDict)) {
return $this->_propDict["subjectNameFormatString"];
} else {
return null;
}
} | Gets the subjectNameFormatString
Custom format to use with SubjectNameFormat = Custom. Example: CN={{EmailAddress}},E={{EmailAddress}},OU=Enterprise Users,O=Contoso Corporation,L=Redmond,ST=WA,C=US
@return string|null The subjectNameFormatString | getSubjectNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function setSubjectNameFormatString($val)
{
$this->_propDict["subjectNameFormatString"] = $val;
return $this;
} | Sets the subjectNameFormatString
Custom format to use with SubjectNameFormat = Custom. Example: CN={{EmailAddress}},E={{EmailAddress}},OU=Enterprise Users,O=Contoso Corporation,L=Redmond,ST=WA,C=US
@param string $val The subjectNameFormatString
@return AndroidForWorkScepCertificateProfile | setSubjectNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function getManagedDeviceCertificateStates()
{
if (array_key_exists("managedDeviceCertificateStates", $this->_propDict)) {
return $this->_propDict["managedDeviceCertificateStates"];
} else {
return null;
}
} | Gets the managedDeviceCertificateStates
Certificate state for devices. This collection can contain a maximum of 2147483647 elements.
@return array|null The managedDeviceCertificateStates | getManagedDeviceCertificateStates | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function setManagedDeviceCertificateStates($val)
{
$this->_propDict["managedDeviceCertificateStates"] = $val;
return $this;
} | Sets the managedDeviceCertificateStates
Certificate state for devices. This collection can contain a maximum of 2147483647 elements.
@param ManagedDeviceCertificateState[] $val The managedDeviceCertificateStates
@return AndroidForWorkScepCertificateProfile | setManagedDeviceCertificateStates | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.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 identity source, typically also the domain name. Read only.
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
The name of the identity source, typically also the domain name. Read only.
@param string $val The value of the displayName
@return ExternalDomainFederation | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | MIT |
public function getDomainName()
{
if (array_key_exists("domainName", $this->_propDict)) {
return $this->_propDict["domainName"];
} else {
return null;
}
} | Gets the domainName
The domain name. Read only.
@return string|null The domainName | getDomainName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | MIT |
public function setDomainName($val)
{
$this->_propDict["domainName"] = $val;
return $this;
} | Sets the domainName
The domain name. Read only.
@param string $val The value of the domainName
@return ExternalDomainFederation | setDomainName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | MIT |
public function getIssuerUri()
{
if (array_key_exists("issuerUri", $this->_propDict)) {
return $this->_propDict["issuerUri"];
} else {
return null;
}
} | Gets the issuerUri
The issuerURI of the incoming federation. Read only.
@return string|null The issuerUri | getIssuerUri | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | MIT |
public function setIssuerUri($val)
{
$this->_propDict["issuerUri"] = $val;
return $this;
} | Sets the issuerUri
The issuerURI of the incoming federation. Read only.
@param string $val The value of the issuerUri
@return ExternalDomainFederation | setIssuerUri | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ExternalDomainFederation.php | MIT |
public function cleanupRequest(Event $event)
{
$params = $event['request']->getParams();
unset($params[self::REDIRECT_COUNT]);
unset($params[self::PARENT_REQUEST]);
} | Clean up the parameters of a request when it is cloned
@param Event $event Event emitted | cleanupRequest | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
public function onRequestSent(Event $event)
{
$response = $event['response'];
$request = $event['request'];
// Only act on redirect requests with Location headers
if (!$response || $request->getParams()->get(self::DISABLE)) {
return;
}
// Trace the original request based on parameter history
$original = $this->getOriginalRequest($request);
// Terminating condition to set the effective response on the original request
if (!$response->isRedirect() || !$response->hasHeader('Location')) {
if ($request !== $original) {
// This is a terminating redirect response, so set it on the original request
$response->getParams()->set(self::REDIRECT_COUNT, $original->getParams()->get(self::REDIRECT_COUNT));
$original->setResponse($response);
$response->setEffectiveUrl($request->getUrl());
}
return;
}
$this->sendRedirectRequest($original, $request, $response);
} | Called when a request receives a redirect response
@param Event $event Event emitted | onRequestSent | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
protected function getOriginalRequest(RequestInterface $request)
{
$original = $request;
// The number of redirects is held on the original request, so determine which request that is
while ($parent = $original->getParams()->get(self::PARENT_REQUEST)) {
$original = $parent;
}
return $original;
} | Get the original request that initiated a series of redirects
@param RequestInterface $request Request to get the original request from
@return RequestInterface | getOriginalRequest | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
protected function prepareRedirection(RequestInterface $original, RequestInterface $request, Response $response)
{
$params = $original->getParams();
// This is a new redirect, so increment the redirect counter
$current = $params[self::REDIRECT_COUNT] + 1;
$params[self::REDIRECT_COUNT] = $current;
// Use a provided maximum value or default to a max redirect count of 5
$max = isset($params[self::MAX_REDIRECTS]) ? $params[self::MAX_REDIRECTS] : $this->defaultMaxRedirects;
// Throw an exception if the redirect count is exceeded
if ($current > $max) {
$this->throwTooManyRedirectsException($original, $max);
return false;
} else {
// Create a redirect request based on the redirect rules set on the request
return $this->createRedirectRequest(
$request,
$response->getStatusCode(),
trim($response->getLocation()),
$original
);
}
} | Prepare the request for redirection and enforce the maximum number of allowed redirects per client
@param RequestInterface $original Original request
@param RequestInterface $request Request to prepare and validate
@param Response $response The current response
@return RequestInterface | prepareRedirection | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
protected function sendRedirectRequest(RequestInterface $original, RequestInterface $request, Response $response)
{
// Validate and create a redirect request based on the original request and current response
if ($redirectRequest = $this->prepareRedirection($original, $request, $response)) {
try {
$redirectRequest->send();
} catch (BadResponseException $e) {
$e->getResponse();
if (!$e->getResponse()) {
throw $e;
}
}
}
} | Send a redirect request and handle any errors
@param RequestInterface $original The originating request
@param RequestInterface $request The current request being redirected
@param Response $response The response of the current request
@throws BadResponseException|\Exception | sendRedirectRequest | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php | MIT |
public function getLastAccessedDateTime()
{
if (array_key_exists("lastAccessedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastAccessedDateTime"], "\DateTime") || is_null($this->_propDict["lastAccessedDateTime"])) {
return $this->_propDict["lastAccessedDateTime"];
} else {
$this->_propDict["lastAccessedDateTime"] = new \DateTime($this->_propDict["lastAccessedDateTime"]);
return $this->_propDict["lastAccessedDateTime"];
}
}
return null;
} | Gets the lastAccessedDateTime
The date and time the resource was last accessed by the user. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
@return \DateTime|null The lastAccessedDateTime | getLastAccessedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | MIT |
public function setLastAccessedDateTime($val)
{
$this->_propDict["lastAccessedDateTime"] = $val;
return $this;
} | Sets the lastAccessedDateTime
The date and time the resource was last accessed by the user. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
@param \DateTime $val The value to assign to the lastAccessedDateTime
@return UsageDetails The UsageDetails | setLastAccessedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | MIT |
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
} | Gets the lastModifiedDateTime
The date and time the resource was last modified by the user. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
@return \DateTime|null The lastModifiedDateTime | getLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | MIT |
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
} | Sets the lastModifiedDateTime
The date and time the resource was last modified by the user. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
@param \DateTime $val The value to assign to the lastModifiedDateTime
@return UsageDetails The UsageDetails | setLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UsageDetails.php | MIT |
public function __construct($input, $options = 0)
{
$this->input = $input;
$this->parser = new MimeDir($input, $options);
} | Constructor.
The splitter should receive an readable file stream as its input.
@param resource $input
@param int $options parser options, see the OPTIONS constants | __construct | php | xiebruce/PicUploader | vendor/sabre/vobject/lib/Splitter/VCard.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Splitter/VCard.php | MIT |
public function getNext()
{
try {
$object = $this->parser->parse();
if (!$object instanceof VObject\Component\VCard) {
throw new VObject\ParseException('The supplied input contained non-VCARD data.');
}
} catch (VObject\EofException $e) {
return;
}
return $object;
} | Every time getNext() is called, a new object will be parsed, until we
hit the end of the stream.
When the end is reached, null will be returned.
@return \Sabre\VObject\Component|null | getNext | php | xiebruce/PicUploader | vendor/sabre/vobject/lib/Splitter/VCard.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/vobject/lib/Splitter/VCard.php | MIT |
public function getIsValidRule()
{
if (array_key_exists("isValidRule", $this->_propDict)) {
return $this->_propDict["isValidRule"];
} else {
return null;
}
} | Gets the isValidRule
Indicator to valid or invalid rule.
@return bool|null The isValidRule | getIsValidRule | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignmentFilterValidationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignmentFilterValidationResult.php | MIT |
public function setIsValidRule($val)
{
$this->_propDict["isValidRule"] = $val;
return $this;
} | Sets the isValidRule
Indicator to valid or invalid rule.
@param bool $val The value of the isValidRule
@return AssignmentFilterValidationResult | setIsValidRule | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignmentFilterValidationResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AssignmentFilterValidationResult.php | MIT |
public function getFeedbackBy()
{
if (array_key_exists("feedbackBy", $this->_propDict)) {
if (is_a($this->_propDict["feedbackBy"], "\Beta\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["feedbackBy"])) {
return $this->_propDict["feedbackBy"];
} else {
$this->_propDict["feedbackBy"] = new IdentitySet($this->_propDict["feedbackBy"]);
return $this->_propDict["feedbackBy"];
}
}
return null;
} | Gets the feedbackBy
User who created the feedback.
@return IdentitySet|null The feedbackBy | getFeedbackBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationFeedback.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationFeedback.php | MIT |
public function setFeedbackBy($val)
{
$this->_propDict["feedbackBy"] = $val;
return $this;
} | Sets the feedbackBy
User who created the feedback.
@param IdentitySet $val The value to assign to the feedbackBy
@return EducationFeedback The EducationFeedback | setFeedbackBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationFeedback.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationFeedback.php | MIT |
public function getFeedbackDateTime()
{
if (array_key_exists("feedbackDateTime", $this->_propDict)) {
if (is_a($this->_propDict["feedbackDateTime"], "\DateTime") || is_null($this->_propDict["feedbackDateTime"])) {
return $this->_propDict["feedbackDateTime"];
} else {
$this->_propDict["feedbackDateTime"] = new \DateTime($this->_propDict["feedbackDateTime"]);
return $this->_propDict["feedbackDateTime"];
}
}
return null;
} | Gets the feedbackDateTime
Moment in time when the feedback was given. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
@return \DateTime|null The feedbackDateTime | getFeedbackDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationFeedback.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationFeedback.php | MIT |
public function setFeedbackDateTime($val)
{
$this->_propDict["feedbackDateTime"] = $val;
return $this;
} | Sets the feedbackDateTime
Moment in time when the feedback was given. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
@param \DateTime $val The value to assign to the feedbackDateTime
@return EducationFeedback The EducationFeedback | setFeedbackDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationFeedback.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationFeedback.php | MIT |
public function getIsEnabled()
{
if (array_key_exists("isEnabled", $this->_propDict)) {
return $this->_propDict["isEnabled"];
} else {
return null;
}
} | Gets the isEnabled
Indicates whether email threading and near duplicate detection are enabled.
@return bool|null The isEnabled | getIsEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | MIT |
public function setIsEnabled($val)
{
$this->_propDict["isEnabled"] = $val;
return $this;
} | Sets the isEnabled
Indicates whether email threading and near duplicate detection are enabled.
@param bool $val The value of the isEnabled
@return RedundancyDetectionSettings | setIsEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | MIT |
public function getMaxWords()
{
if (array_key_exists("maxWords", $this->_propDict)) {
return $this->_propDict["maxWords"];
} else {
return null;
}
} | Gets the maxWords
Specifies the maximum number of words used for email threading and near duplicate detection. To learn more, see Minimum/maximum number of words.
@return int|null The maxWords | getMaxWords | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | MIT |
public function setMaxWords($val)
{
$this->_propDict["maxWords"] = $val;
return $this;
} | Sets the maxWords
Specifies the maximum number of words used for email threading and near duplicate detection. To learn more, see Minimum/maximum number of words.
@param int $val The value of the maxWords
@return RedundancyDetectionSettings | setMaxWords | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | MIT |
public function getMinWords()
{
if (array_key_exists("minWords", $this->_propDict)) {
return $this->_propDict["minWords"];
} else {
return null;
}
} | Gets the minWords
Specifies the minimum number of words used for email threading and near duplicate detection. To learn more, see Minimum/maximum number of words.
@return int|null The minWords | getMinWords | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | MIT |
public function setMinWords($val)
{
$this->_propDict["minWords"] = $val;
return $this;
} | Sets the minWords
Specifies the minimum number of words used for email threading and near duplicate detection. To learn more, see Minimum/maximum number of words.
@param int $val The value of the minWords
@return RedundancyDetectionSettings | setMinWords | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | MIT |
public function getSimilarityThreshold()
{
if (array_key_exists("similarityThreshold", $this->_propDict)) {
return $this->_propDict["similarityThreshold"];
} else {
return null;
}
} | Gets the similarityThreshold
Specifies the similarity level for documents to be put in the same near duplicate set. To learn more, see Document and email similarity threshold.
@return int|null The similarityThreshold | getSimilarityThreshold | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | MIT |
public function setSimilarityThreshold($val)
{
$this->_propDict["similarityThreshold"] = $val;
return $this;
} | Sets the similarityThreshold
Specifies the similarity level for documents to be put in the same near duplicate set. To learn more, see Document and email similarity threshold.
@param int $val The value of the similarityThreshold
@return RedundancyDetectionSettings | setSimilarityThreshold | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/RedundancyDetectionSettings.php | MIT |
public function __construct(array $data)
{
parent::__construct($data);
$this->link = $this->getDataProperty('link');
$this->setMetadata();
} | Create a new TemporaryLink instance
@param array $data | __construct | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/TemporaryLink.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/TemporaryLink.php | MIT |
public function getApplicationId()
{
if (array_key_exists("applicationId", $this->_propDict)) {
return $this->_propDict["applicationId"];
} else {
return null;
}
} | Gets the applicationId
Optional. Identifier of the application used to create the subscription. Read-only.
@return string|null The applicationId | getApplicationId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setApplicationId($val)
{
$this->_propDict["applicationId"] = $val;
return $this;
} | Sets the applicationId
Optional. Identifier of the application used to create the subscription. Read-only.
@param string $val The applicationId
@return Subscription | setApplicationId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getChangeType()
{
if (array_key_exists("changeType", $this->_propDict)) {
return $this->_propDict["changeType"];
} else {
return null;
}
} | Gets the changeType
Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType. Use updated to receive notifications when user or group is created, updated or soft deleted. Use deleted to receive notifications when user or group is permanently deleted.
@return string|null The changeType | getChangeType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setChangeType($val)
{
$this->_propDict["changeType"] = $val;
return $this;
} | Sets the changeType
Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType. Use updated to receive notifications when user or group is created, updated or soft deleted. Use deleted to receive notifications when user or group is permanently deleted.
@param string $val The changeType
@return Subscription | setChangeType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getClientState()
{
if (array_key_exists("clientState", $this->_propDict)) {
return $this->_propDict["clientState"];
} else {
return null;
}
} | Gets the clientState
Required. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification.
@return string|null The clientState | getClientState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setClientState($val)
{
$this->_propDict["clientState"] = $val;
return $this;
} | Sets the clientState
Required. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification.
@param string $val The clientState
@return Subscription | setClientState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getCreatorId()
{
if (array_key_exists("creatorId", $this->_propDict)) {
return $this->_propDict["creatorId"];
} else {
return null;
}
} | Gets the creatorId
Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the id of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the id of the service principal corresponding to the app. Read-only.
@return string|null The creatorId | getCreatorId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setCreatorId($val)
{
$this->_propDict["creatorId"] = $val;
return $this;
} | Sets the creatorId
Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the id of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the id of the service principal corresponding to the app. Read-only.
@param string $val The creatorId
@return Subscription | setCreatorId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getEncryptionCertificate()
{
if (array_key_exists("encryptionCertificate", $this->_propDict)) {
return $this->_propDict["encryptionCertificate"];
} else {
return null;
}
} | Gets the encryptionCertificate
Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true.
@return string|null The encryptionCertificate | getEncryptionCertificate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setEncryptionCertificate($val)
{
$this->_propDict["encryptionCertificate"] = $val;
return $this;
} | Sets the encryptionCertificate
Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true.
@param string $val The encryptionCertificate
@return Subscription | setEncryptionCertificate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getEncryptionCertificateId()
{
if (array_key_exists("encryptionCertificateId", $this->_propDict)) {
return $this->_propDict["encryptionCertificateId"];
} else {
return null;
}
} | Gets the encryptionCertificateId
Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data.
@return string|null The encryptionCertificateId | getEncryptionCertificateId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setEncryptionCertificateId($val)
{
$this->_propDict["encryptionCertificateId"] = $val;
return $this;
} | Sets the encryptionCertificateId
Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data.
@param string $val The encryptionCertificateId
@return Subscription | setEncryptionCertificateId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getExpirationDateTime()
{
if (array_key_exists("expirationDateTime", $this->_propDict)) {
if (is_a($this->_propDict["expirationDateTime"], "\DateTime") || is_null($this->_propDict["expirationDateTime"])) {
return $this->_propDict["expirationDateTime"];
} else {
$this->_propDict["expirationDateTime"] = new \DateTime($this->_propDict["expirationDateTime"]);
return $this->_propDict["expirationDateTime"];
}
}
return null;
} | Gets the expirationDateTime
Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.
@return \DateTime|null The expirationDateTime | getExpirationDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setExpirationDateTime($val)
{
$this->_propDict["expirationDateTime"] = $val;
return $this;
} | Sets the expirationDateTime
Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.
@param \DateTime $val The expirationDateTime
@return Subscription | setExpirationDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getIncludeResourceData()
{
if (array_key_exists("includeResourceData", $this->_propDict)) {
return $this->_propDict["includeResourceData"];
} else {
return null;
}
} | Gets the includeResourceData
Optional. When set to true, change notifications include resource data (such as content of a chat message).
@return bool|null The includeResourceData | getIncludeResourceData | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setIncludeResourceData($val)
{
$this->_propDict["includeResourceData"] = boolval($val);
return $this;
} | Sets the includeResourceData
Optional. When set to true, change notifications include resource data (such as content of a chat message).
@param bool $val The includeResourceData
@return Subscription | setIncludeResourceData | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getLatestSupportedTlsVersion()
{
if (array_key_exists("latestSupportedTlsVersion", $this->_propDict)) {
return $this->_propDict["latestSupportedTlsVersion"];
} else {
return null;
}
} | Gets the latestSupportedTlsVersion
Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by notificationUrl, supports. The possible values are: v1_0, v1_1, v1_2, v1_3. For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set timeline allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to v1_2.
@return string|null The latestSupportedTlsVersion | getLatestSupportedTlsVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setLatestSupportedTlsVersion($val)
{
$this->_propDict["latestSupportedTlsVersion"] = $val;
return $this;
} | Sets the latestSupportedTlsVersion
Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by notificationUrl, supports. The possible values are: v1_0, v1_1, v1_2, v1_3. For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set timeline allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to v1_2.
@param string $val The latestSupportedTlsVersion
@return Subscription | setLatestSupportedTlsVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getLifecycleNotificationUrl()
{
if (array_key_exists("lifecycleNotificationUrl", $this->_propDict)) {
return $this->_propDict["lifecycleNotificationUrl"];
} else {
return null;
}
} | Gets the lifecycleNotificationUrl
Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved, reauthorizationRequired, and missed notifications. This URL must make use of the HTTPS protocol.
@return string|null The lifecycleNotificationUrl | getLifecycleNotificationUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setLifecycleNotificationUrl($val)
{
$this->_propDict["lifecycleNotificationUrl"] = $val;
return $this;
} | Sets the lifecycleNotificationUrl
Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved, reauthorizationRequired, and missed notifications. This URL must make use of the HTTPS protocol.
@param string $val The lifecycleNotificationUrl
@return Subscription | setLifecycleNotificationUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getNotificationQueryOptions()
{
if (array_key_exists("notificationQueryOptions", $this->_propDict)) {
return $this->_propDict["notificationQueryOptions"];
} else {
return null;
}
} | Gets the notificationQueryOptions
Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc. Supported only for Universal Print Service. For more information, see Subscribe to change notifications from cloud printing APIs using Microsoft Graph.
@return string|null The notificationQueryOptions | getNotificationQueryOptions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setNotificationQueryOptions($val)
{
$this->_propDict["notificationQueryOptions"] = $val;
return $this;
} | Sets the notificationQueryOptions
Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc. Supported only for Universal Print Service. For more information, see Subscribe to change notifications from cloud printing APIs using Microsoft Graph.
@param string $val The notificationQueryOptions
@return Subscription | setNotificationQueryOptions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getNotificationUrl()
{
if (array_key_exists("notificationUrl", $this->_propDict)) {
return $this->_propDict["notificationUrl"];
} else {
return null;
}
} | Gets the notificationUrl
Required. The URL of the endpoint that will receive the change notifications. This URL must make use of the HTTPS protocol. Any query string parameter included in the notificationUrl property will be included in the HTTP POST request when Microsoft Graph sends the change notifications.
@return string|null The notificationUrl | getNotificationUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setNotificationUrl($val)
{
$this->_propDict["notificationUrl"] = $val;
return $this;
} | Sets the notificationUrl
Required. The URL of the endpoint that will receive the change notifications. This URL must make use of the HTTPS protocol. Any query string parameter included in the notificationUrl property will be included in the HTTP POST request when Microsoft Graph sends the change notifications.
@param string $val The notificationUrl
@return Subscription | setNotificationUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getNotificationUrlAppId()
{
if (array_key_exists("notificationUrlAppId", $this->_propDict)) {
return $this->_propDict["notificationUrlAppId"];
} else {
return null;
}
} | Gets the notificationUrlAppId
Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received.
@return string|null The notificationUrlAppId | getNotificationUrlAppId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setNotificationUrlAppId($val)
{
$this->_propDict["notificationUrlAppId"] = $val;
return $this;
} | Sets the notificationUrlAppId
Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received.
@param string $val The notificationUrlAppId
@return Subscription | setNotificationUrlAppId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getResource()
{
if (array_key_exists("resource", $this->_propDict)) {
return $this->_propDict["resource"];
} else {
return null;
}
} | Gets the resource
Required. Specifies the resource that will be monitored for changes. Do not include the base URL (https://graph.microsoft.com/v1.0/). See the possible resource path values for each supported resource.
@return string|null The resource | getResource | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function setResource($val)
{
$this->_propDict["resource"] = $val;
return $this;
} | Sets the resource
Required. Specifies the resource that will be monitored for changes. Do not include the base URL (https://graph.microsoft.com/v1.0/). See the possible resource path values for each supported resource.
@param string $val The resource
@return Subscription | setResource | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Subscription.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php | MIT |
public function getChat()
{
if (array_key_exists("chat", $this->_propDict)) {
if (is_a($this->_propDict["chat"], "\Beta\Microsoft\Graph\Model\Chat") || is_null($this->_propDict["chat"])) {
return $this->_propDict["chat"];
} else {
$this->_propDict["chat"] = new Chat($this->_propDict["chat"]);
return $this->_propDict["chat"];
}
}
return null;
} | Gets the chat
The chat between the user and Teams app.
@return Chat|null The chat | getChat | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserScopeTeamsAppInstallation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserScopeTeamsAppInstallation.php | MIT |
public function setChat($val)
{
$this->_propDict["chat"] = $val;
return $this;
} | Sets the chat
The chat between the user and Teams app.
@param Chat $val The chat
@return UserScopeTeamsAppInstallation | setChat | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserScopeTeamsAppInstallation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserScopeTeamsAppInstallation.php | MIT |
public function getConditions()
{
if (array_key_exists("conditions", $this->_propDict)) {
if (is_a($this->_propDict["conditions"], "\Beta\Microsoft\Graph\Model\ConditionalAccessConditionSet") || is_null($this->_propDict["conditions"])) {
return $this->_propDict["conditions"];
} else {
$this->_propDict["conditions"] = new ConditionalAccessConditionSet($this->_propDict["conditions"]);
return $this->_propDict["conditions"];
}
}
return null;
} | Gets the conditions
Represents the type of conditions that govern when the policy applies.
@return ConditionalAccessConditionSet|null The conditions | getConditions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | MIT |
public function setConditions($val)
{
$this->_propDict["conditions"] = $val;
return $this;
} | Sets the conditions
Represents the type of conditions that govern when the policy applies.
@param ConditionalAccessConditionSet $val The value to assign to the conditions
@return ConditionalAccessPolicyDetail The ConditionalAccessPolicyDetail | setConditions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | MIT |
public function getGrantControls()
{
if (array_key_exists("grantControls", $this->_propDict)) {
if (is_a($this->_propDict["grantControls"], "\Beta\Microsoft\Graph\Model\ConditionalAccessGrantControls") || is_null($this->_propDict["grantControls"])) {
return $this->_propDict["grantControls"];
} else {
$this->_propDict["grantControls"] = new ConditionalAccessGrantControls($this->_propDict["grantControls"]);
return $this->_propDict["grantControls"];
}
}
return null;
} | Gets the grantControls
Represents grant controls that must be fulfilled for the policy.
@return ConditionalAccessGrantControls|null The grantControls | getGrantControls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | MIT |
public function setGrantControls($val)
{
$this->_propDict["grantControls"] = $val;
return $this;
} | Sets the grantControls
Represents grant controls that must be fulfilled for the policy.
@param ConditionalAccessGrantControls $val The value to assign to the grantControls
@return ConditionalAccessPolicyDetail The ConditionalAccessPolicyDetail | setGrantControls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | MIT |
public function getSessionControls()
{
if (array_key_exists("sessionControls", $this->_propDict)) {
if (is_a($this->_propDict["sessionControls"], "\Beta\Microsoft\Graph\Model\ConditionalAccessSessionControls") || is_null($this->_propDict["sessionControls"])) {
return $this->_propDict["sessionControls"];
} else {
$this->_propDict["sessionControls"] = new ConditionalAccessSessionControls($this->_propDict["sessionControls"]);
return $this->_propDict["sessionControls"];
}
}
return null;
} | Gets the sessionControls
Represents a complex type of session controls that is enforced after sign-in.
@return ConditionalAccessSessionControls|null The sessionControls | getSessionControls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | MIT |
public function setSessionControls($val)
{
$this->_propDict["sessionControls"] = $val;
return $this;
} | Sets the sessionControls
Represents a complex type of session controls that is enforced after sign-in.
@param ConditionalAccessSessionControls $val The value to assign to the sessionControls
@return ConditionalAccessPolicyDetail The ConditionalAccessPolicyDetail | setSessionControls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php | MIT |
public function getFileHash()
{
if (array_key_exists("fileHash", $this->_propDict)) {
if (is_a($this->_propDict["fileHash"], "\Beta\Microsoft\Graph\Model\FileHash") || is_null($this->_propDict["fileHash"])) {
return $this->_propDict["fileHash"];
} else {
$this->_propDict["fileHash"] = new FileHash($this->_propDict["fileHash"]);
return $this->_propDict["fileHash"];
}
}
return null;
} | Gets the fileHash
Complex type containing file hashes (cryptographic and location-sensitive).
@return FileHash|null The fileHash | getFileHash | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | MIT |
public function setFileHash($val)
{
$this->_propDict["fileHash"] = $val;
return $this;
} | Sets the fileHash
Complex type containing file hashes (cryptographic and location-sensitive).
@param FileHash $val The value to assign to the fileHash
@return FileSecurityState The FileSecurityState | setFileHash | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | MIT |
public function getName()
{
if (array_key_exists("name", $this->_propDict)) {
return $this->_propDict["name"];
} else {
return null;
}
} | Gets the name
File name (without path).
@return string|null The name | getName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | MIT |
public function setName($val)
{
$this->_propDict["name"] = $val;
return $this;
} | Sets the name
File name (without path).
@param string $val The value of the name
@return FileSecurityState | setName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | MIT |
public function getPath()
{
if (array_key_exists("path", $this->_propDict)) {
return $this->_propDict["path"];
} else {
return null;
}
} | Gets the path
Full file path of the file/imageFile.
@return string|null The path | getPath | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | MIT |
public function setPath($val)
{
$this->_propDict["path"] = $val;
return $this;
} | Sets the path
Full file path of the file/imageFile.
@param string $val The value of the path
@return FileSecurityState | setPath | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | MIT |
public function getRiskScore()
{
if (array_key_exists("riskScore", $this->_propDict)) {
return $this->_propDict["riskScore"];
} else {
return null;
}
} | Gets the riskScore
Provider generated/calculated risk score of the alert file. Recommended value range of 0-1, which equates to a percentage.
@return string|null The riskScore | getRiskScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | MIT |
public function setRiskScore($val)
{
$this->_propDict["riskScore"] = $val;
return $this;
} | Sets the riskScore
Provider generated/calculated risk score of the alert file. Recommended value range of 0-1, which equates to a percentage.
@param string $val The value of the riskScore
@return FileSecurityState | setRiskScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSecurityState.php | MIT |
public function getUnifiedRoles()
{
if (array_key_exists("unifiedRoles", $this->_propDict)) {
if (is_a($this->_propDict["unifiedRoles"], "\Microsoft\Graph\Model\UnifiedRole") || is_null($this->_propDict["unifiedRoles"])) {
return $this->_propDict["unifiedRoles"];
} else {
$this->_propDict["unifiedRoles"] = new UnifiedRole($this->_propDict["unifiedRoles"]);
return $this->_propDict["unifiedRoles"];
}
}
return null;
} | Gets the unifiedRoles
The directory roles that the Microsoft partner is assigned in the customer tenant.
@return UnifiedRole|null The unifiedRoles | getUnifiedRoles | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminAccessDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminAccessDetails.php | MIT |
public function setUnifiedRoles($val)
{
$this->_propDict["unifiedRoles"] = $val;
return $this;
} | Sets the unifiedRoles
The directory roles that the Microsoft partner is assigned in the customer tenant.
@param UnifiedRole $val The value to assign to the unifiedRoles
@return DelegatedAdminAccessDetails The DelegatedAdminAccessDetails | setUnifiedRoles | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminAccessDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DelegatedAdminAccessDetails.php | MIT |
public function getProperties()
{
return $this->_propDict;
} | Gets the property dictionary of the Entity
@return array The list of properties | getProperties | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Entity.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Entity.php | MIT |
public function getId()
{
if (array_key_exists("id", $this->_propDict)) {
return $this->_propDict["id"];
} else {
return null;
}
} | Gets the id
The unique identifier for an entity. Read-only.
@return string|null The id | getId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Entity.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Entity.php | MIT |
public function setId($val)
{
$this->_propDict["id"] = $val;
return $this;
} | Sets the id
The unique identifier for an entity. Read-only.
@param string $val The id
@return Entity | setId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Entity.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Entity.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/Entity.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Entity.php | MIT |
public function getLanguageTag()
{
if (array_key_exists("languageTag", $this->_propDict)) {
return $this->_propDict["languageTag"];
} else {
return null;
}
} | Gets the languageTag
The language to apply the override.Returned by default. Not nullable.
@return string|null The languageTag | getLanguageTag | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php | MIT |
public function setLanguageTag($val)
{
$this->_propDict["languageTag"] = $val;
return $this;
} | Sets the languageTag
The language to apply the override.Returned by default. Not nullable.
@param string $val The value of the languageTag
@return TranslationLanguageOverride | setLanguageTag | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php | MIT |
public function getTranslationBehavior()
{
if (array_key_exists("translationBehavior", $this->_propDict)) {
if (is_a($this->_propDict["translationBehavior"], "\Beta\Microsoft\Graph\Model\TranslationBehavior") || is_null($this->_propDict["translationBehavior"])) {
return $this->_propDict["translationBehavior"];
} else {
$this->_propDict["translationBehavior"] = new TranslationBehavior($this->_propDict["translationBehavior"]);
return $this->_propDict["translationBehavior"];
}
}
return null;
} | Gets the translationBehavior
The translation override behavior for the language, if any.Returned by default. Not nullable.
@return TranslationBehavior|null The translationBehavior | getTranslationBehavior | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php | MIT |
public function setTranslationBehavior($val)
{
$this->_propDict["translationBehavior"] = $val;
return $this;
} | Sets the translationBehavior
The translation override behavior for the language, if any.Returned by default. Not nullable.
@param TranslationBehavior $val The value to assign to the translationBehavior
@return TranslationLanguageOverride The TranslationLanguageOverride | setTranslationBehavior | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php | MIT |
public function getKey()
{
if (array_key_exists("key", $this->_propDict)) {
return $this->_propDict["key"];
} else {
return null;
}
} | Gets the key
Key of the meta data.
@return string|null The key | getKey | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MetaDataKeyStringPair.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MetaDataKeyStringPair.php | MIT |
public function setKey($val)
{
$this->_propDict["key"] = $val;
return $this;
} | Sets the key
Key of the meta data.
@param string $val The value of the key
@return MetaDataKeyStringPair | setKey | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MetaDataKeyStringPair.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MetaDataKeyStringPair.php | MIT |
public function getValue()
{
if (array_key_exists("value", $this->_propDict)) {
return $this->_propDict["value"];
} else {
return null;
}
} | Gets the value
Value of the meta data.
@return string|null The value | getValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MetaDataKeyStringPair.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MetaDataKeyStringPair.php | MIT |
public function setValue($val)
{
$this->_propDict["value"] = $val;
return $this;
} | Sets the value
Value of the meta data.
@param string $val The value of the value
@return MetaDataKeyStringPair | setValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MetaDataKeyStringPair.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MetaDataKeyStringPair.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.