code
stringlengths 15
9.96M
| docstring
stringlengths 1
10.1k
| func_name
stringlengths 1
124
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 6
186
| url
stringlengths 50
236
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function getIsActive()
{
return $this->getProperty("IsActive");
} | @return bool | getIsActive | php | vgrem/phpSPO | src/Teams/SchedulingGroup.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/SchedulingGroup.php | MIT |
public function setIsActive($value)
{
$this->setProperty("IsActive", $value, true);
} | @var bool | setIsActive | php | vgrem/phpSPO | src/Teams/SchedulingGroup.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/SchedulingGroup.php | MIT |
public function getUserIds()
{
return $this->getProperty("UserIds");
} | @return array | getUserIds | php | vgrem/phpSPO | src/Teams/SchedulingGroup.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/SchedulingGroup.php | MIT |
public function setUserIds($value)
{
$this->setProperty("UserIds", $value, true);
} | @var array | setUserIds | php | vgrem/phpSPO | src/Teams/SchedulingGroup.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/SchedulingGroup.php | MIT |
public function getWebUrl()
{
return $this->getProperty("WebUrl");
} | A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select **Get link to team**. This URL should be treated as an opaque blob, and not parsed.
@return string | getWebUrl | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function setWebUrl($value)
{
return $this->setProperty("WebUrl", $value, true);
} | A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select **Get link to team**. This URL should be treated as an opaque blob, and not parsed.
@return self
@var string | setWebUrl | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function getIsArchived()
{
return $this->getProperty("IsArchived");
} | Whether this team is in read-only mode.
@return bool | getIsArchived | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function setIsArchived($value)
{
return $this->setProperty("IsArchived", $value, true);
} | Whether this team is in read-only mode.
@return self
@var bool | setIsArchived | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function getMemberSettings()
{
return $this->getProperty("MemberSettings", new TeamMemberSettings());
} | Settings to configure whether members can perform certain actions, for example, create channels and add bots, in the team.
@return TeamMemberSettings | getMemberSettings | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function setMemberSettings($value)
{
return $this->setProperty("MemberSettings", $value, true);
} | Settings to configure whether members can perform certain actions, for example, create channels and add bots, in the team.
@return self
@var TeamMemberSettings | setMemberSettings | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function getGuestSettings()
{
return $this->getProperty("GuestSettings", new TeamGuestSettings());
} | Settings to configure whether guests can create, update, or delete channels in the team.
@return TeamGuestSettings | getGuestSettings | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function setGuestSettings($value)
{
return $this->setProperty("GuestSettings", $value, true);
} | Settings to configure whether guests can create, update, or delete channels in the team.
@return self
@var TeamGuestSettings | setGuestSettings | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function getMessagingSettings()
{
return $this->getProperty("MessagingSettings", new TeamMessagingSettings());
} | Settings to configure messaging and mentions in the team.
@return TeamMessagingSettings | getMessagingSettings | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function setMessagingSettings($value)
{
return $this->setProperty("MessagingSettings", $value, true);
} | Settings to configure messaging and mentions in the team.
@return self
@var TeamMessagingSettings | setMessagingSettings | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function getFunSettings()
{
return $this->getProperty("FunSettings", new TeamFunSettings());
} | Settings to configure use of Giphy, memes, and stickers in the team.
@return TeamFunSettings | getFunSettings | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function setFunSettings($value)
{
return $this->setProperty("FunSettings", $value, true);
} | Settings to configure use of Giphy, memes, and stickers in the team.
@return self
@var TeamFunSettings | setFunSettings | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function getMembers()
{
return $this->getProperty("Members",
new EntityCollection($this->getContext(),
new ResourcePath("Members",$this->getResourcePath()),DirectoryObject::class));
} | @return EntityCollection | getMembers | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function deleteObject()
{
parent::deleteObject();
$this->getContext()->getPendingRequest()->beforeExecuteRequestOnce(function (RequestOptions $request){
$request->Url = str_replace ( "teams" , "groups", $request->Url );
});
return $this;
} | Deletes a Team
@return self | deleteObject | php | vgrem/phpSPO | src/Teams/Team.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Team.php | MIT |
public function getExternalId()
{
if (!$this->isPropertyAvailable("ExternalId")) {
return null;
}
return $this->getProperty("ExternalId");
} | @return string | getExternalId | php | vgrem/phpSPO | src/Teams/Apps/TeamsApp.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsApp.php | MIT |
public function setExternalId($value)
{
$this->setProperty("ExternalId", $value, true);
} | @var string | setExternalId | php | vgrem/phpSPO | src/Teams/Apps/TeamsApp.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsApp.php | MIT |
public function getDisplayName()
{
if (!$this->isPropertyAvailable("DisplayName")) {
return null;
}
return $this->getProperty("DisplayName");
} | @return string | getDisplayName | php | vgrem/phpSPO | src/Teams/Apps/TeamsApp.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsApp.php | MIT |
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
} | @var string | setDisplayName | php | vgrem/phpSPO | src/Teams/Apps/TeamsApp.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsApp.php | MIT |
public function getTeamsApp()
{
if (!$this->isPropertyAvailable("TeamsApp")) {
$this->setProperty("TeamsApp", new TeamsApp($this->getContext(), new ResourcePath("TeamsApp", $this->getResourcePath())));
}
return $this->getProperty("TeamsApp");
} | The app that is installed.
@return TeamsApp | getTeamsApp | php | vgrem/phpSPO | src/Teams/Apps/TeamsAppInstallation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsAppInstallation.php | MIT |
public function getTeamsAppDefinition()
{
if (!$this->isPropertyAvailable("TeamsAppDefinition")) {
$this->setProperty("TeamsAppDefinition", new TeamsAppDefinition($this->getContext(), new ResourcePath("TeamsAppDefinition", $this->getResourcePath())));
}
return $this->getProperty("TeamsAppDefinition");
} | The details of this version of the app.
@return TeamsAppDefinition | getTeamsAppDefinition | php | vgrem/phpSPO | src/Teams/Apps/TeamsAppInstallation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsAppInstallation.php | MIT |
public function getTeamsAppId()
{
if (!$this->isPropertyAvailable("TeamsAppId")) {
return null;
}
return $this->getProperty("TeamsAppId");
} | @return string | getTeamsAppId | php | vgrem/phpSPO | src/Teams/Apps/TeamsAppDefinition.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsAppDefinition.php | MIT |
public function setTeamsAppId($value)
{
$this->setProperty("TeamsAppId", $value, true);
} | @var string | setTeamsAppId | php | vgrem/phpSPO | src/Teams/Apps/TeamsAppDefinition.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsAppDefinition.php | MIT |
public function getDisplayName()
{
if (!$this->isPropertyAvailable("DisplayName")) {
return null;
}
return $this->getProperty("DisplayName");
} | @return string | getDisplayName | php | vgrem/phpSPO | src/Teams/Apps/TeamsAppDefinition.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsAppDefinition.php | MIT |
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
} | @var string | setDisplayName | php | vgrem/phpSPO | src/Teams/Apps/TeamsAppDefinition.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsAppDefinition.php | MIT |
public function getVersion()
{
if (!$this->isPropertyAvailable("Version")) {
return null;
}
return $this->getProperty("Version");
} | @return string | getVersion | php | vgrem/phpSPO | src/Teams/Apps/TeamsAppDefinition.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsAppDefinition.php | MIT |
public function setVersion($value)
{
$this->setProperty("Version", $value, true);
} | @var string | setVersion | php | vgrem/phpSPO | src/Teams/Apps/TeamsAppDefinition.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Apps/TeamsAppDefinition.php | MIT |
public function getAttemptsCount()
{
return $this->getProperty("AttemptsCount");
} | @return integer | getAttemptsCount | php | vgrem/phpSPO | src/Teams/Operations/TeamsAsyncOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Operations/TeamsAsyncOperation.php | MIT |
public function setAttemptsCount($value)
{
$this->setProperty("AttemptsCount", $value, true);
} | @var integer | setAttemptsCount | php | vgrem/phpSPO | src/Teams/Operations/TeamsAsyncOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Operations/TeamsAsyncOperation.php | MIT |
public function getTargetResourceId()
{
return $this->getProperty("TargetResourceId");
} | @return string | getTargetResourceId | php | vgrem/phpSPO | src/Teams/Operations/TeamsAsyncOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Operations/TeamsAsyncOperation.php | MIT |
public function setTargetResourceId($value)
{
$this->setProperty("TargetResourceId", $value, true);
} | @var string | setTargetResourceId | php | vgrem/phpSPO | src/Teams/Operations/TeamsAsyncOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Operations/TeamsAsyncOperation.php | MIT |
public function getTargetResourceLocation()
{
return $this->getProperty("TargetResourceLocation");
} | @return string | getTargetResourceLocation | php | vgrem/phpSPO | src/Teams/Operations/TeamsAsyncOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Operations/TeamsAsyncOperation.php | MIT |
public function setTargetResourceLocation($value)
{
$this->setProperty("TargetResourceLocation", $value, true);
} | @var string | setTargetResourceLocation | php | vgrem/phpSPO | src/Teams/Operations/TeamsAsyncOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Operations/TeamsAsyncOperation.php | MIT |
public function getError()
{
return $this->getProperty("Error", new OperationError());
} | @return OperationError | getError | php | vgrem/phpSPO | src/Teams/Operations/TeamsAsyncOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Operations/TeamsAsyncOperation.php | MIT |
public function setError($value)
{
$this->setProperty("Error", $value, true);
} | @var OperationError | setError | php | vgrem/phpSPO | src/Teams/Operations/TeamsAsyncOperation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Operations/TeamsAsyncOperation.php | MIT |
public function getLastSharedMethod()
{
if (!$this->isPropertyAvailable("LastSharedMethod")) {
$this->setProperty("LastSharedMethod", new Entity($this->getContext(), new ResourcePath("LastSharedMethod", $this->getResourcePath())));
}
return $this->getProperty("LastSharedMethod");
} | @return Entity | getLastSharedMethod | php | vgrem/phpSPO | src/OneDrive/SharedInsight.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/SharedInsight.php | MIT |
public function getResource()
{
if (!$this->isPropertyAvailable("Resource")) {
$this->setProperty("Resource", new Entity($this->getContext(), new ResourcePath("Resource", $this->getResourcePath())));
}
return $this->getProperty("Resource");
} | @return Entity | getResource | php | vgrem/phpSPO | src/OneDrive/SharedInsight.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/SharedInsight.php | MIT |
public function getLastShared()
{
if (!$this->isPropertyAvailable("LastShared")) {
return null;
}
return $this->getProperty("LastShared");
} | @return SharingDetail | getLastShared | php | vgrem/phpSPO | src/OneDrive/SharedInsight.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/SharedInsight.php | MIT |
public function setLastShared($value)
{
$this->setProperty("LastShared", $value, true);
} | @var SharingDetail | setLastShared | php | vgrem/phpSPO | src/OneDrive/SharedInsight.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/SharedInsight.php | MIT |
public function getResourceVisualization()
{
if (!$this->isPropertyAvailable("ResourceVisualization")) {
return null;
}
return $this->getProperty("ResourceVisualization");
} | @return ResourceVisualization | getResourceVisualization | php | vgrem/phpSPO | src/OneDrive/SharedInsight.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/SharedInsight.php | MIT |
public function setResourceVisualization($value)
{
$this->setProperty("ResourceVisualization", $value, true);
} | @var ResourceVisualization | setResourceVisualization | php | vgrem/phpSPO | src/OneDrive/SharedInsight.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/SharedInsight.php | MIT |
public function getResourceReference()
{
if (!$this->isPropertyAvailable("ResourceReference")) {
return null;
}
return $this->getProperty("ResourceReference");
} | @return ResourceReference | getResourceReference | php | vgrem/phpSPO | src/OneDrive/SharedInsight.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/SharedInsight.php | MIT |
public function setResourceReference($value)
{
$this->setProperty("ResourceReference", $value, true);
} | @var ResourceReference | setResourceReference | php | vgrem/phpSPO | src/OneDrive/SharedInsight.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/SharedInsight.php | MIT |
public function getActor()
{
if (!$this->isPropertyAvailable("Actor")) {
return null;
}
return $this->getProperty("Actor");
} | @return IdentitySet | getActor | php | vgrem/phpSPO | src/OneDrive/ItemActivity.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivity.php | MIT |
public function setActor($value)
{
$this->setProperty("Actor", $value, true);
} | @var IdentitySet | setActor | php | vgrem/phpSPO | src/OneDrive/ItemActivity.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivity.php | MIT |
public function getDriveItem()
{
if (!$this->isPropertyAvailable("DriveItem")) {
$this->setProperty("DriveItem", new DriveItem($this->getContext(),
new ResourcePath("DriveItem", $this->getResourcePath())));
}
return $this->getProperty("DriveItem");
} | @return DriveItem | getDriveItem | php | vgrem/phpSPO | src/OneDrive/ItemActivity.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivity.php | MIT |
public function getAccess()
{
if (!$this->isPropertyAvailable("Access")) {
return null;
}
return $this->getProperty("Access");
} | @return AccessAction | getAccess | php | vgrem/phpSPO | src/OneDrive/ItemActivity.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivity.php | MIT |
public function setAccess($value)
{
$this->setProperty("Access", $value, true);
} | @var AccessAction | setAccess | php | vgrem/phpSPO | src/OneDrive/ItemActivity.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivity.php | MIT |
public function getLarge()
{
return $this->getProperty("Large", new Thumbnail());
} | @return Thumbnail | getLarge | php | vgrem/phpSPO | src/OneDrive/ThumbnailSet.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ThumbnailSet.php | MIT |
public function setLarge($value)
{
$this->setProperty("Large", $value, true);
} | @var Thumbnail | setLarge | php | vgrem/phpSPO | src/OneDrive/ThumbnailSet.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ThumbnailSet.php | MIT |
public function getMedium()
{
return $this->getProperty("Medium", new Thumbnail());
} | @return Thumbnail | getMedium | php | vgrem/phpSPO | src/OneDrive/ThumbnailSet.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ThumbnailSet.php | MIT |
public function setMedium($value)
{
$this->setProperty("Medium", $value, true);
} | @var Thumbnail | setMedium | php | vgrem/phpSPO | src/OneDrive/ThumbnailSet.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ThumbnailSet.php | MIT |
public function getSmall()
{
return $this->getProperty("Small", new Thumbnail());
} | @return Thumbnail | getSmall | php | vgrem/phpSPO | src/OneDrive/ThumbnailSet.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ThumbnailSet.php | MIT |
public function setSmall($value)
{
$this->setProperty("Small", $value, true);
} | @var Thumbnail | setSmall | php | vgrem/phpSPO | src/OneDrive/ThumbnailSet.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ThumbnailSet.php | MIT |
public function getSource()
{
return $this->getProperty("Source", new Thumbnail());
} | @return Thumbnail | getSource | php | vgrem/phpSPO | src/OneDrive/ThumbnailSet.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ThumbnailSet.php | MIT |
public function setSource($value)
{
$this->setProperty("Source", $value, true);
} | @var Thumbnail | setSource | php | vgrem/phpSPO | src/OneDrive/ThumbnailSet.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ThumbnailSet.php | MIT |
public function getDescription()
{
return $this->getProperty("Description");
} | @return string | getDescription | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function setDescription($value)
{
return $this->setProperty("Description", $value, true);
} | @return self
@var string | setDescription | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function getETag()
{
return $this->getProperty("ETag");
} | @return string | getETag | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function setETag($value)
{
return $this->setProperty("ETag", $value, true);
} | @return self
@var string | setETag | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function getName()
{
return $this->getProperty("Name");
} | @return string | getName | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function setName($value)
{
return $this->setProperty("Name", $value, true);
} | @return self
@var string | setName | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function getWebUrl()
{
return $this->getProperty("WebUrl");
} | @return string | getWebUrl | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function setWebUrl($value)
{
return $this->setProperty("WebUrl", $value, true);
} | @return self
@var string | setWebUrl | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function getCreatedByUser()
{
return $this->getProperty("CreatedByUser",
new User($this->getContext(), new ResourcePath("CreatedByUser", $this->getResourcePath())));
} | @return User | getCreatedByUser | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function getLastModifiedByUser()
{
return $this->getProperty("LastModifiedByUser",
new User($this->getContext(), new ResourcePath("LastModifiedByUser", $this->getResourcePath())));
} | @return User | getLastModifiedByUser | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function getCreatedBy()
{
return $this->getProperty("CreatedBy", new IdentitySet());
} | @return IdentitySet | getCreatedBy | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function setCreatedBy($value)
{
return $this->setProperty("CreatedBy", $value, true);
} | @return self
@var IdentitySet | setCreatedBy | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function getLastModifiedBy()
{
return $this->getProperty("LastModifiedBy", new IdentitySet());
} | @return IdentitySet | getLastModifiedBy | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function setLastModifiedBy($value)
{
return $this->setProperty("LastModifiedBy", $value, true);
} | @return self
@var IdentitySet | setLastModifiedBy | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function getParentReference()
{
return $this->getProperty("ParentReference", new ItemReference());
} | @return ItemReference | getParentReference | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function setParentReference($value)
{
return $this->setProperty("ParentReference", $value, true);
} | @return self
@var ItemReference | setParentReference | php | vgrem/phpSPO | src/OneDrive/BaseItem.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/BaseItem.php | MIT |
public function getIsTrending()
{
if (!$this->isPropertyAvailable("IsTrending")) {
return null;
}
return $this->getProperty("IsTrending");
} | @return bool | getIsTrending | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function setIsTrending($value)
{
$this->setProperty("IsTrending", $value, true);
} | @var bool | setIsTrending | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function getAccess()
{
if (!$this->isPropertyAvailable("Access")) {
return null;
}
return $this->getProperty("Access");
} | @return ItemActionStat | getAccess | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function setAccess($value)
{
$this->setProperty("Access", $value, true);
} | @var ItemActionStat | setAccess | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function getCreate()
{
if (!$this->isPropertyAvailable("Create")) {
return null;
}
return $this->getProperty("Create");
} | @return ItemActionStat | getCreate | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function setCreate($value)
{
$this->setProperty("Create", $value, true);
} | @var ItemActionStat | setCreate | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function getDelete()
{
if (!$this->isPropertyAvailable("Delete")) {
return null;
}
return $this->getProperty("Delete");
} | @return ItemActionStat | getDelete | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function setDelete($value)
{
$this->setProperty("Delete", $value, true);
} | @var ItemActionStat | setDelete | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function getEdit()
{
if (!$this->isPropertyAvailable("Edit")) {
return null;
}
return $this->getProperty("Edit");
} | @return ItemActionStat | getEdit | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function setEdit($value)
{
$this->setProperty("Edit", $value, true);
} | @var ItemActionStat | setEdit | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function getMove()
{
if (!$this->isPropertyAvailable("Move")) {
return null;
}
return $this->getProperty("Move");
} | @return ItemActionStat | getMove | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function setMove($value)
{
$this->setProperty("Move", $value, true);
} | @var ItemActionStat | setMove | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function getIncompleteData()
{
if (!$this->isPropertyAvailable("IncompleteData")) {
return null;
}
return $this->getProperty("IncompleteData");
} | @return IncompleteData | getIncompleteData | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function setIncompleteData($value)
{
$this->setProperty("IncompleteData", $value, true);
} | @var IncompleteData | setIncompleteData | php | vgrem/phpSPO | src/OneDrive/ItemActivityStat.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/ItemActivityStat.php | MIT |
public function getRoles()
{
return $this->getProperty("Roles");
} | @return array | getRoles | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function setRoles($value)
{
return $this->setProperty("Roles", $value, true);
} | @return self
@var array | setRoles | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function getShareId()
{
return $this->getProperty("ShareId");
} | @return string | getShareId | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function setShareId($value)
{
$this->setProperty("ShareId", $value, true);
} | @var string | setShareId | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function getGrantedTo()
{
return $this->getProperty("GrantedTo", new IdentitySet());
} | @return IdentitySet | getGrantedTo | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function setGrantedTo($value)
{
return $this->setProperty("GrantedTo", $value, true);
} | @return self
@var IdentitySet | setGrantedTo | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function getInheritedFrom()
{
return $this->getProperty("InheritedFrom", new ItemReference());
} | @return ItemReference | getInheritedFrom | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function setInheritedFrom($value)
{
$this->setProperty("InheritedFrom", $value, true);
} | @var ItemReference | setInheritedFrom | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function getInvitation()
{
return $this->getProperty("Invitation", new SharingInvitation());
} | @return SharingInvitation | getInvitation | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function setInvitation($value)
{
$this->setProperty("Invitation", $value, true);
} | @var SharingInvitation | setInvitation | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
public function getLink()
{
return $this->getProperty("Link", new SharingLink());
} | @return SharingLink | getLink | php | vgrem/phpSPO | src/OneDrive/Permission.php | https://github.com/vgrem/phpSPO/blob/master/src/OneDrive/Permission.php | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.