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 setCustomSubjectAlternativeNames($val)
{
$this->_propDict["customSubjectAlternativeNames"] = $val;
return $this;
} | Sets the customSubjectAlternativeNames
Custom Subject Alternative Name Settings. This collection can contain a maximum of 500 elements.
@param CustomSubjectAlternativeName[] $val The customSubjectAlternativeNames
@return AndroidWorkProfileScepCertificateProfile | setCustomSubjectAlternativeNames | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | MIT |
public function getHashAlgorithm()
{
if (array_key_exists("hashAlgorithm", $this->_propDict)) {
if (is_a($this->_propDict["hashAlgorithm"], "\Beta\Microsoft\Graph\Model\HashAlgorithms") || is_null($this->_propDict["hashAlgorithm"])) {
return $this->_propDict["hashAlgorithm"];
} else {
$this->_propDict["hashAlgorithm"] = new HashAlgorithms($this->_propDict["hashAlgorithm"]);
return $this->_propDict["hashAlgorithm"];
}
}
return null;
} | Gets the hashAlgorithm
SCEP Hash Algorithm. Possible values are: sha1, sha2.
@return HashAlgorithms|null The hashAlgorithm | getHashAlgorithm | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | MIT |
public function setHashAlgorithm($val)
{
$this->_propDict["hashAlgorithm"] = $val;
return $this;
} | Sets the hashAlgorithm
SCEP Hash Algorithm. Possible values are: sha1, sha2.
@param HashAlgorithms $val The hashAlgorithm
@return AndroidWorkProfileScepCertificateProfile | setHashAlgorithm | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | MIT |
public function getKeySize()
{
if (array_key_exists("keySize", $this->_propDict)) {
if (is_a($this->_propDict["keySize"], "\Beta\Microsoft\Graph\Model\KeySize") || is_null($this->_propDict["keySize"])) {
return $this->_propDict["keySize"];
} else {
$this->_propDict["keySize"] = new KeySize($this->_propDict["keySize"]);
return $this->_propDict["keySize"];
}
}
return null;
} | Gets the keySize
SCEP Key Size. Possible values are: size1024, size2048, size4096.
@return KeySize|null The keySize | getKeySize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | MIT |
public function setKeySize($val)
{
$this->_propDict["keySize"] = $val;
return $this;
} | Sets the keySize
SCEP Key Size. Possible values are: size1024, size2048, size4096.
@param KeySize $val The keySize
@return AndroidWorkProfileScepCertificateProfile | setKeySize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | MIT |
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/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.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 AndroidWorkProfileScepCertificateProfile | setKeyUsage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.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/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.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 AndroidWorkProfileScepCertificateProfile | setScepServerUrls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.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/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.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 AndroidWorkProfileScepCertificateProfile | setSubjectAlternativeNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.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/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.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 AndroidWorkProfileScepCertificateProfile | setSubjectNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.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/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.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 AndroidWorkProfileScepCertificateProfile | setManagedDeviceCertificateStates | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidWorkProfileScepCertificateProfile.php | MIT |
public function getInviteUri()
{
if (array_key_exists("inviteUri", $this->_propDict)) {
return $this->_propDict["inviteUri"];
} else {
return null;
}
} | Gets the inviteUri
URI to receive new incoming call notification.
@return string|null The inviteUri | getInviteUri | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InviteNewBotResponse.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InviteNewBotResponse.php | MIT |
public function setInviteUri($val)
{
$this->_propDict["inviteUri"] = $val;
return $this;
} | Sets the inviteUri
URI to receive new incoming call notification.
@param string $val The value of the inviteUri
@return InviteNewBotResponse | setInviteUri | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InviteNewBotResponse.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/InviteNewBotResponse.php | MIT |
public function getCostCenter()
{
if (array_key_exists("costCenter", $this->_propDict)) {
return $this->_propDict["costCenter"];
} else {
return null;
}
} | Gets the costCenter
The cost center associated with the user. Returned only on $select. Supports $filter.
@return string|null The costCenter | getCostCenter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EmployeeOrgData.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EmployeeOrgData.php | MIT |
public function setCostCenter($val)
{
$this->_propDict["costCenter"] = $val;
return $this;
} | Sets the costCenter
The cost center associated with the user. Returned only on $select. Supports $filter.
@param string $val The value of the costCenter
@return EmployeeOrgData | setCostCenter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EmployeeOrgData.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EmployeeOrgData.php | MIT |
public function getDivision()
{
if (array_key_exists("division", $this->_propDict)) {
return $this->_propDict["division"];
} else {
return null;
}
} | Gets the division
The name of the division in which the user works. Returned only on $select. Supports $filter.
@return string|null The division | getDivision | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EmployeeOrgData.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EmployeeOrgData.php | MIT |
public function setDivision($val)
{
$this->_propDict["division"] = $val;
return $this;
} | Sets the division
The name of the division in which the user works. Returned only on $select. Supports $filter.
@param string $val The value of the division
@return EmployeeOrgData | setDivision | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EmployeeOrgData.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EmployeeOrgData.php | MIT |
public function getAzureADAppId()
{
if (array_key_exists("azureADAppId", $this->_propDict)) {
return $this->_propDict["azureADAppId"];
} else {
return null;
}
} | Gets the azureADAppId
The unique identifier of the Azure AD application used by this endpoint.
@return string|null The azureADAppId | getAzureADAppId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | MIT |
public function setAzureADAppId($val)
{
$this->_propDict["azureADAppId"] = $val;
return $this;
} | Sets the azureADAppId
The unique identifier of the Azure AD application used by this endpoint.
@param string $val The value of the azureADAppId
@return ClientUserAgent | setAzureADAppId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | MIT |
public function getCommunicationServiceId()
{
if (array_key_exists("communicationServiceId", $this->_propDict)) {
return $this->_propDict["communicationServiceId"];
} else {
return null;
}
} | Gets the communicationServiceId
Immutable resource identifier of the Azure Communication Service associated with this endpoint based on Communication Services APIs.
@return string|null The communicationServiceId | getCommunicationServiceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | MIT |
public function setCommunicationServiceId($val)
{
$this->_propDict["communicationServiceId"] = $val;
return $this;
} | Sets the communicationServiceId
Immutable resource identifier of the Azure Communication Service associated with this endpoint based on Communication Services APIs.
@param string $val The value of the communicationServiceId
@return ClientUserAgent | setCommunicationServiceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | MIT |
public function getPlatform()
{
if (array_key_exists("platform", $this->_propDict)) {
if (is_a($this->_propDict["platform"], "\Beta\Microsoft\Graph\CallRecords\Model\ClientPlatform") || is_null($this->_propDict["platform"])) {
return $this->_propDict["platform"];
} else {
$this->_propDict["platform"] = new ClientPlatform($this->_propDict["platform"]);
return $this->_propDict["platform"];
}
}
return null;
} | Gets the platform
Identifies the platform used by this endpoint. Possible values are: unknown, windows, macOS, iOS, android, web, ipPhone, roomSystem, surfaceHub, holoLens, unknownFutureValue.
@return ClientPlatform|null The platform | getPlatform | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | MIT |
public function setPlatform($val)
{
$this->_propDict["platform"] = $val;
return $this;
} | Sets the platform
Identifies the platform used by this endpoint. Possible values are: unknown, windows, macOS, iOS, android, web, ipPhone, roomSystem, surfaceHub, holoLens, unknownFutureValue.
@param ClientPlatform $val The value to assign to the platform
@return ClientUserAgent The ClientUserAgent | setPlatform | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | MIT |
public function getProductFamily()
{
if (array_key_exists("productFamily", $this->_propDict)) {
if (is_a($this->_propDict["productFamily"], "\Beta\Microsoft\Graph\CallRecords\Model\ProductFamily") || is_null($this->_propDict["productFamily"])) {
return $this->_propDict["productFamily"];
} else {
$this->_propDict["productFamily"] = new ProductFamily($this->_propDict["productFamily"]);
return $this->_propDict["productFamily"];
}
}
return null;
} | Gets the productFamily
Identifies the family of application software used by this endpoint. Possible values are: unknown, teams, skypeForBusiness, lync, unknownFutureValue, azureCommunicationServices. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: azureCommunicationServices.
@return ProductFamily|null The productFamily | getProductFamily | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | MIT |
public function setProductFamily($val)
{
$this->_propDict["productFamily"] = $val;
return $this;
} | Sets the productFamily
Identifies the family of application software used by this endpoint. Possible values are: unknown, teams, skypeForBusiness, lync, unknownFutureValue, azureCommunicationServices. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: azureCommunicationServices.
@param ProductFamily $val The value to assign to the productFamily
@return ClientUserAgent The ClientUserAgent | setProductFamily | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/CallRecords/Model/ClientUserAgent.php | MIT |
function getName() {
return 'outbox';
} | Returns the name of the node.
This is used to generate the url.
@return string | getName | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/Schedule/Outbox.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/Schedule/Outbox.php | MIT |
function getChildren() {
return [];
} | Returns an array with all the child nodes
@return \Sabre\DAV\INode[] | getChildren | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/Schedule/Outbox.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/Schedule/Outbox.php | MIT |
function getOwner() {
return $this->principalUri;
} | Returns the owner principal
This must be a url to a principal, or null if there's no owner
@return string|null | getOwner | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/Schedule/Outbox.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/Schedule/Outbox.php | MIT |
function getACL() {
return [
[
'privilege' => '{' . CalDAV\Plugin::NS_CALDAV . '}schedule-send',
'principal' => $this->getOwner(),
'protected' => true,
],
[
'privilege' => '{DAV:}read',
'principal' => $this->getOwner(),
'protected' => true,
],
[
'privilege' => '{' . CalDAV\Plugin::NS_CALDAV . '}schedule-send',
'principal' => $this->getOwner() . '/calendar-proxy-write',
'protected' => true,
],
[
'privilege' => '{DAV:}read',
'principal' => $this->getOwner() . '/calendar-proxy-read',
'protected' => true,
],
[
'privilege' => '{DAV:}read',
'principal' => $this->getOwner() . '/calendar-proxy-write',
'protected' => true,
],
];
} | Returns a list of ACE's for this node.
Each ACE has the following properties:
* 'privilege', a string such as {DAV:}read or {DAV:}write. These are
currently the only supported privileges
* 'principal', a url to the principal who owns the node
* 'protected' (optional), indicating that this ACE is not allowed to
be updated.
@return array | getACL | php | xiebruce/PicUploader | vendor/sabre/dav/lib/CalDAV/Schedule/Outbox.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/CalDAV/Schedule/Outbox.php | MIT |
public function getCreatedBy()
{
if (array_key_exists("createdBy", $this->_propDict)) {
if (is_a($this->_propDict["createdBy"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["createdBy"])) {
return $this->_propDict["createdBy"];
} else {
$this->_propDict["createdBy"] = new IdentitySet($this->_propDict["createdBy"]);
return $this->_propDict["createdBy"];
}
}
return null;
} | Gets the createdBy
The user who created this resource.
@return IdentitySet|null The createdBy | getCreatedBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function setCreatedBy($val)
{
$this->_propDict["createdBy"] = $val;
return $this;
} | Sets the createdBy
The user who created this resource.
@param IdentitySet $val The createdBy
@return EducationRubric | setCreatedBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
} | Gets the createdDateTime
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 createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
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 createdDateTime
@return EducationRubric | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
if (is_a($this->_propDict["description"], "\Microsoft\Graph\Model\EducationItemBody") || is_null($this->_propDict["description"])) {
return $this->_propDict["description"];
} else {
$this->_propDict["description"] = new EducationItemBody($this->_propDict["description"]);
return $this->_propDict["description"];
}
}
return null;
} | Gets the description
The description of this rubric.
@return EducationItemBody|null The description | getDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
} | Sets the description
The description of this rubric.
@param EducationItemBody $val The description
@return EducationRubric | setDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.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 this rubric.
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
The name of this rubric.
@param string $val The displayName
@return EducationRubric | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function getGrading()
{
if (array_key_exists("grading", $this->_propDict)) {
if (is_a($this->_propDict["grading"], "\Microsoft\Graph\Model\EducationAssignmentGradeType") || is_null($this->_propDict["grading"])) {
return $this->_propDict["grading"];
} else {
$this->_propDict["grading"] = new EducationAssignmentGradeType($this->_propDict["grading"]);
return $this->_propDict["grading"];
}
}
return null;
} | Gets the grading
The grading type of this rubric -- null for a no-points rubric, or educationAssignmentPointsGradeType for a points rubric.
@return EducationAssignmentGradeType|null The grading | getGrading | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function setGrading($val)
{
$this->_propDict["grading"] = $val;
return $this;
} | Sets the grading
The grading type of this rubric -- null for a no-points rubric, or educationAssignmentPointsGradeType for a points rubric.
@param EducationAssignmentGradeType $val The grading
@return EducationRubric | setGrading | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function getLastModifiedBy()
{
if (array_key_exists("lastModifiedBy", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedBy"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["lastModifiedBy"])) {
return $this->_propDict["lastModifiedBy"];
} else {
$this->_propDict["lastModifiedBy"] = new IdentitySet($this->_propDict["lastModifiedBy"]);
return $this->_propDict["lastModifiedBy"];
}
}
return null;
} | Gets the lastModifiedBy
The last user to modify the resource.
@return IdentitySet|null The lastModifiedBy | getLastModifiedBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function setLastModifiedBy($val)
{
$this->_propDict["lastModifiedBy"] = $val;
return $this;
} | Sets the lastModifiedBy
The last user to modify the resource.
@param IdentitySet $val The lastModifiedBy
@return EducationRubric | setLastModifiedBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.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
Moment in time when the resource was last modified. 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 lastModifiedDateTime | getLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
} | Sets the lastModifiedDateTime
Moment in time when the resource was last modified. 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 lastModifiedDateTime
@return EducationRubric | setLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function getLevels()
{
if (array_key_exists("levels", $this->_propDict)) {
return $this->_propDict["levels"];
} else {
return null;
}
} | Gets the levels
The collection of levels making up this rubric.
@return array|null The levels | getLevels | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function setLevels($val)
{
$this->_propDict["levels"] = $val;
return $this;
} | Sets the levels
The collection of levels making up this rubric.
@param RubricLevel[] $val The levels
@return EducationRubric | setLevels | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function getQualities()
{
if (array_key_exists("qualities", $this->_propDict)) {
return $this->_propDict["qualities"];
} else {
return null;
}
} | Gets the qualities
The collection of qualities making up this rubric.
@return array|null The qualities | getQualities | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function setQualities($val)
{
$this->_propDict["qualities"] = $val;
return $this;
} | Sets the qualities
The collection of qualities making up this rubric.
@param RubricQuality[] $val The qualities
@return EducationRubric | setQualities | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/EducationRubric.php | MIT |
public function getDataSource()
{
if (array_key_exists("dataSource", $this->_propDict)) {
if (is_a($this->_propDict["dataSource"], "\Microsoft\Graph\SecurityNamespace\Model\DataSource") || is_null($this->_propDict["dataSource"])) {
return $this->_propDict["dataSource"];
} else {
$this->_propDict["dataSource"] = new DataSource($this->_propDict["dataSource"]);
return $this->_propDict["dataSource"];
}
}
return null;
} | Gets the dataSource
User source or SharePoint site data source as non-custodial data source.
@return DataSource|null The dataSource | getDataSource | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryNoncustodialDataSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryNoncustodialDataSource.php | MIT |
public function setDataSource($val)
{
$this->_propDict["dataSource"] = $val;
return $this;
} | Sets the dataSource
User source or SharePoint site data source as non-custodial data source.
@param DataSource $val The dataSource
@return EdiscoveryNoncustodialDataSource | setDataSource | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryNoncustodialDataSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryNoncustodialDataSource.php | MIT |
public function getLastIndexOperation()
{
if (array_key_exists("lastIndexOperation", $this->_propDict)) {
if (is_a($this->_propDict["lastIndexOperation"], "\Microsoft\Graph\SecurityNamespace\Model\EdiscoveryIndexOperation") || is_null($this->_propDict["lastIndexOperation"])) {
return $this->_propDict["lastIndexOperation"];
} else {
$this->_propDict["lastIndexOperation"] = new EdiscoveryIndexOperation($this->_propDict["lastIndexOperation"]);
return $this->_propDict["lastIndexOperation"];
}
}
return null;
} | Gets the lastIndexOperation
Operation entity that represents the latest indexing for the non-custodial data source.
@return EdiscoveryIndexOperation|null The lastIndexOperation | getLastIndexOperation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryNoncustodialDataSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryNoncustodialDataSource.php | MIT |
public function setLastIndexOperation($val)
{
$this->_propDict["lastIndexOperation"] = $val;
return $this;
} | Sets the lastIndexOperation
Operation entity that represents the latest indexing for the non-custodial data source.
@param EdiscoveryIndexOperation $val The lastIndexOperation
@return EdiscoveryNoncustodialDataSource | setLastIndexOperation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryNoncustodialDataSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryNoncustodialDataSource.php | MIT |
public function getName()
{
if (array_key_exists("name", $this->_propDict)) {
return $this->_propDict["name"];
} else {
return null;
}
} | Gets the name
Name for this key-value pair. For more information about possible names for each resource type that uses this configuration, see keyValuePair names and values.
@return string|null The name | getName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/KeyValuePair.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/KeyValuePair.php | MIT |
public function setName($val)
{
$this->_propDict["name"] = $val;
return $this;
} | Sets the name
Name for this key-value pair. For more information about possible names for each resource type that uses this configuration, see keyValuePair names and values.
@param string $val The value of the name
@return KeyValuePair | setName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/KeyValuePair.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/KeyValuePair.php | MIT |
public function getValue()
{
if (array_key_exists("value", $this->_propDict)) {
return $this->_propDict["value"];
} else {
return null;
}
} | Gets the value
Value for this key-value pair. For more information about possible values for each resource type that uses this configuration, see keyValuePair names and values.
@return string|null The value | getValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/KeyValuePair.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/KeyValuePair.php | MIT |
public function setValue($val)
{
$this->_propDict["value"] = $val;
return $this;
} | Sets the value
Value for this key-value pair. For more information about possible values for each resource type that uses this configuration, see keyValuePair names and values.
@param string $val The value of the value
@return KeyValuePair | setValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/KeyValuePair.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/KeyValuePair.php | MIT |
public function getPropertyName()
{
if (array_key_exists("propertyName", $this->_propDict)) {
return $this->_propDict["propertyName"];
} else {
return null;
}
} | Gets the propertyName
Provides the property name.
@return string|null The propertyName | getPropertyName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PropertyToEvaluate.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PropertyToEvaluate.php | MIT |
public function setPropertyName($val)
{
$this->_propDict["propertyName"] = $val;
return $this;
} | Sets the propertyName
Provides the property name.
@param string $val The value of the propertyName
@return PropertyToEvaluate | setPropertyName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PropertyToEvaluate.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PropertyToEvaluate.php | MIT |
public function getPropertyValue()
{
if (array_key_exists("propertyValue", $this->_propDict)) {
return $this->_propDict["propertyValue"];
} else {
return null;
}
} | Gets the propertyValue
Provides the property value.
@return string|null The propertyValue | getPropertyValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PropertyToEvaluate.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PropertyToEvaluate.php | MIT |
public function setPropertyValue($val)
{
$this->_propDict["propertyValue"] = $val;
return $this;
} | Sets the propertyValue
Provides the property value.
@param string $val The value of the propertyValue
@return PropertyToEvaluate | setPropertyValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PropertyToEvaluate.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PropertyToEvaluate.php | MIT |
public function __construct(array $data)
{
parent::__construct($data);
$this->id = $this->getDataProperty('id');
$this->tag = $this->getDataProperty('.tag');
$this->name = $this->getDataProperty('name');
$this->path_lower = $this->getDataProperty('path_lower');
$this->path_display = $this->getDataProperty('path_display');
//Make SharingInfo
$sharingInfo = $this->getDataProperty('sharing_info');
if (is_array($sharingInfo)) {
$this->sharing_info = new FolderSharingInfo($sharingInfo);
}
} | Create a new FolderMetadata instance
@param array $data | __construct | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | MIT |
public function getId()
{
return $this->id;
} | Get the 'id' property of the folder model.
@return string | getId | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | MIT |
public function getTag()
{
return $this->tag;
} | Get the '.tag' property of the folder model.
@return string | getTag | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | MIT |
public function getName()
{
return $this->name;
} | Get the 'name' property of the folder model.
@return string | getName | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | MIT |
public function getPathLower()
{
return $this->path_lower;
} | Get the 'path_lower' property of the folder model.
@return string | getPathLower | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | MIT |
public function getSharingInfo()
{
return $this->sharing_info;
} | Get the 'sharing_info' property of the folder model.
@return \Kunnu\Dropbox\Models\FolderSharingInfo | getSharingInfo | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | MIT |
public function getPathDisplay()
{
return $this->path_display;
} | Get the 'path_display' property of the folder model.
@return string | getPathDisplay | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/FolderMetadata.php | MIT |
public function getEmail()
{
if (array_key_exists("email", $this->_propDict)) {
return $this->_propDict["email"];
} else {
return null;
}
} | Gets the email
Email address of the user's mailbox.
@return string|null The email | getEmail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | MIT |
public function setEmail($val)
{
$this->_propDict["email"] = $val;
return $this;
} | Sets the email
Email address of the user's mailbox.
@param string $val The email
@return UserSource | setEmail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | MIT |
public function getIncludedSources()
{
if (array_key_exists("includedSources", $this->_propDict)) {
if (is_a($this->_propDict["includedSources"], "\Microsoft\Graph\SecurityNamespace\Model\SourceType") || is_null($this->_propDict["includedSources"])) {
return $this->_propDict["includedSources"];
} else {
$this->_propDict["includedSources"] = new SourceType($this->_propDict["includedSources"]);
return $this->_propDict["includedSources"];
}
}
return null;
} | Gets the includedSources
Specifies which sources are included in this group. Possible values are: mailbox, site.
@return SourceType|null The includedSources | getIncludedSources | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | MIT |
public function setIncludedSources($val)
{
$this->_propDict["includedSources"] = $val;
return $this;
} | Sets the includedSources
Specifies which sources are included in this group. Possible values are: mailbox, site.
@param SourceType $val The includedSources
@return UserSource | setIncludedSources | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | MIT |
public function getSiteWebUrl()
{
if (array_key_exists("siteWebUrl", $this->_propDict)) {
return $this->_propDict["siteWebUrl"];
} else {
return null;
}
} | Gets the siteWebUrl
The URL of the user's OneDrive for Business site. Read-only.
@return string|null The siteWebUrl | getSiteWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | MIT |
public function setSiteWebUrl($val)
{
$this->_propDict["siteWebUrl"] = $val;
return $this;
} | Sets the siteWebUrl
The URL of the user's OneDrive for Business site. Read-only.
@param string $val The siteWebUrl
@return UserSource | setSiteWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UserSource.php | MIT |
public function getEndDateTime()
{
if (array_key_exists("endDateTime", $this->_propDict)) {
if (is_a($this->_propDict["endDateTime"], "\DateTime") || is_null($this->_propDict["endDateTime"])) {
return $this->_propDict["endDateTime"];
} else {
$this->_propDict["endDateTime"] = new \DateTime($this->_propDict["endDateTime"]);
return $this->_propDict["endDateTime"];
}
}
return null;
} | Gets the endDateTime
The 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 endDateTime | getEndDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | MIT |
public function setEndDateTime($val)
{
$this->_propDict["endDateTime"] = $val;
return $this;
} | Sets the endDateTime
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 endDateTime
@return TimeOffRequest | setEndDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | MIT |
public function getStartDateTime()
{
if (array_key_exists("startDateTime", $this->_propDict)) {
if (is_a($this->_propDict["startDateTime"], "\DateTime") || is_null($this->_propDict["startDateTime"])) {
return $this->_propDict["startDateTime"];
} else {
$this->_propDict["startDateTime"] = new \DateTime($this->_propDict["startDateTime"]);
return $this->_propDict["startDateTime"];
}
}
return null;
} | Gets the startDateTime
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 startDateTime | getStartDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | MIT |
public function setStartDateTime($val)
{
$this->_propDict["startDateTime"] = $val;
return $this;
} | Sets the startDateTime
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 startDateTime
@return TimeOffRequest | setStartDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | MIT |
public function getTimeOffReasonId()
{
if (array_key_exists("timeOffReasonId", $this->_propDict)) {
return $this->_propDict["timeOffReasonId"];
} else {
return null;
}
} | Gets the timeOffReasonId
The reason for the time off.
@return string|null The timeOffReasonId | getTimeOffReasonId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | MIT |
public function setTimeOffReasonId($val)
{
$this->_propDict["timeOffReasonId"] = $val;
return $this;
} | Sets the timeOffReasonId
The reason for the time off.
@param string $val The timeOffReasonId
@return TimeOffRequest | setTimeOffReasonId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TimeOffRequest.php | MIT |
public function getRunAsAccount()
{
if (array_key_exists("runAsAccount", $this->_propDict)) {
if (is_a($this->_propDict["runAsAccount"], "\Beta\Microsoft\Graph\Model\RunAsAccountType") || is_null($this->_propDict["runAsAccount"])) {
return $this->_propDict["runAsAccount"];
} else {
$this->_propDict["runAsAccount"] = new RunAsAccountType($this->_propDict["runAsAccount"]);
return $this->_propDict["runAsAccount"];
}
}
return null;
} | Gets the runAsAccount
Indicates the type of execution context the app setup runs in on target devices. Options include values of the RunAsAccountType enum, which are System and User. Required at creation time, cannot be modified on existing objects. Possible values are: system, user.
@return RunAsAccountType|null The runAsAccount | getRunAsAccount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WinGetAppInstallExperience.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WinGetAppInstallExperience.php | MIT |
public function setRunAsAccount($val)
{
$this->_propDict["runAsAccount"] = $val;
return $this;
} | Sets the runAsAccount
Indicates the type of execution context the app setup runs in on target devices. Options include values of the RunAsAccountType enum, which are System and User. Required at creation time, cannot be modified on existing objects. Possible values are: system, user.
@param RunAsAccountType $val The value to assign to the runAsAccount
@return WinGetAppInstallExperience The WinGetAppInstallExperience | setRunAsAccount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WinGetAppInstallExperience.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WinGetAppInstallExperience.php | MIT |
public function getRecoveryKeys()
{
if (array_key_exists("recoveryKeys", $this->_propDict)) {
return $this->_propDict["recoveryKeys"];
} else {
return null;
}
} | Gets the recoveryKeys
The recovery keys associated with the bitlocker entity.
@return array|null The recoveryKeys | getRecoveryKeys | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Bitlocker.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Bitlocker.php | MIT |
public function setRecoveryKeys($val)
{
$this->_propDict["recoveryKeys"] = $val;
return $this;
} | Sets the recoveryKeys
The recovery keys associated with the bitlocker entity.
@param BitlockerRecoveryKey[] $val The recoveryKeys
@return Bitlocker | setRecoveryKeys | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Bitlocker.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Bitlocker.php | MIT |
public function getReviewSet()
{
if (array_key_exists("reviewSet", $this->_propDict)) {
if (is_a($this->_propDict["reviewSet"], "\Microsoft\Graph\SecurityNamespace\Model\EdiscoveryReviewSet") || is_null($this->_propDict["reviewSet"])) {
return $this->_propDict["reviewSet"];
} else {
$this->_propDict["reviewSet"] = new EdiscoveryReviewSet($this->_propDict["reviewSet"]);
return $this->_propDict["reviewSet"];
}
}
return null;
} | Gets the reviewSet
eDiscovery review set to which items matching source collection query gets added.
@return EdiscoveryReviewSet|null The reviewSet | getReviewSet | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryAddToReviewSetOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryAddToReviewSetOperation.php | MIT |
public function setReviewSet($val)
{
$this->_propDict["reviewSet"] = $val;
return $this;
} | Sets the reviewSet
eDiscovery review set to which items matching source collection query gets added.
@param EdiscoveryReviewSet $val The reviewSet
@return EdiscoveryAddToReviewSetOperation | setReviewSet | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryAddToReviewSetOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryAddToReviewSetOperation.php | MIT |
public function getSearch()
{
if (array_key_exists("search", $this->_propDict)) {
if (is_a($this->_propDict["search"], "\Microsoft\Graph\SecurityNamespace\Model\EdiscoverySearch") || is_null($this->_propDict["search"])) {
return $this->_propDict["search"];
} else {
$this->_propDict["search"] = new EdiscoverySearch($this->_propDict["search"]);
return $this->_propDict["search"];
}
}
return null;
} | Gets the search
eDiscovery search that gets added to review set.
@return EdiscoverySearch|null The search | getSearch | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryAddToReviewSetOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryAddToReviewSetOperation.php | MIT |
public function setSearch($val)
{
$this->_propDict["search"] = $val;
return $this;
} | Sets the search
eDiscovery search that gets added to review set.
@param EdiscoverySearch $val The search
@return EdiscoveryAddToReviewSetOperation | setSearch | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryAddToReviewSetOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/EdiscoveryAddToReviewSetOperation.php | MIT |
public function getNotReviewedResult()
{
if (array_key_exists("notReviewedResult", $this->_propDict)) {
return $this->_propDict["notReviewedResult"];
} else {
return null;
}
} | Gets the notReviewedResult
Possible values: Approve, Deny, or Recommendation. If Recommendation, then accessRecommendationsEnabled in the accessReviewSettings resource should also be set to true. If you want to have the system provide a decision even if the reviewer does not make a choice, set the autoReviewEnabled property in the accessReviewSettings resource to true and include an autoReviewSettings object with the notReviewedResult property. Then, when a review completes, based on the notReviewedResult property, the decision is recorded as either Approve or Deny.
@return string|null The notReviewedResult | getNotReviewedResult | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AutoReviewSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AutoReviewSettings.php | MIT |
public function setNotReviewedResult($val)
{
$this->_propDict["notReviewedResult"] = $val;
return $this;
} | Sets the notReviewedResult
Possible values: Approve, Deny, or Recommendation. If Recommendation, then accessRecommendationsEnabled in the accessReviewSettings resource should also be set to true. If you want to have the system provide a decision even if the reviewer does not make a choice, set the autoReviewEnabled property in the accessReviewSettings resource to true and include an autoReviewSettings object with the notReviewedResult property. Then, when a review completes, based on the notReviewedResult property, the decision is recorded as either Approve or Deny.
@param string $val The value of the notReviewedResult
@return AutoReviewSettings | setNotReviewedResult | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AutoReviewSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AutoReviewSettings.php | MIT |
public function getClassification()
{
if (array_key_exists("classification", $this->_propDict)) {
return $this->_propDict["classification"];
} else {
return null;
}
} | Gets the classification
An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
@return string|null The classification | getClassification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | MIT |
public function setClassification($val)
{
$this->_propDict["classification"] = $val;
return $this;
} | Sets the classification
An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
@param string $val The classification
@return Team | setClassification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | MIT |
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
} | Gets the createdDateTime
Timestamp at which the team was created.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
Timestamp at which the team was created.
@param \DateTime $val The createdDateTime
@return Team | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | MIT |
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
return $this->_propDict["description"];
} else {
return null;
}
} | Gets the description
An optional description for the team. Maximum length: 1024 characters.
@return string|null The description | getDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | MIT |
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
} | Sets the description
An optional description for the team. Maximum length: 1024 characters.
@param string $val The description
@return Team | setDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | MIT |
public function getDiscoverySettings()
{
if (array_key_exists("discoverySettings", $this->_propDict)) {
if (is_a($this->_propDict["discoverySettings"], "\Beta\Microsoft\Graph\Model\TeamDiscoverySettings") || is_null($this->_propDict["discoverySettings"])) {
return $this->_propDict["discoverySettings"];
} else {
$this->_propDict["discoverySettings"] = new TeamDiscoverySettings($this->_propDict["discoverySettings"]);
return $this->_propDict["discoverySettings"];
}
}
return null;
} | Gets the discoverySettings
Settings to configure team discoverability by others.
@return TeamDiscoverySettings|null The discoverySettings | getDiscoverySettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | MIT |
public function setDiscoverySettings($val)
{
$this->_propDict["discoverySettings"] = $val;
return $this;
} | Sets the discoverySettings
Settings to configure team discoverability by others.
@param TeamDiscoverySettings $val The discoverySettings
@return Team | setDiscoverySettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.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.