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 setIsActive($value)
{
$this->setProperty("IsActive", $value, true);
} | Indicates whether this workforce integration is currently active and available.
@var bool | setIsActive | php | vgrem/phpSPO | src/Teams/WorkforceIntegration.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/WorkforceIntegration.php | MIT |
public function getUrl()
{
if (!$this->isPropertyAvailable("Url")) {
return null;
}
return $this->getProperty("Url");
} | Workforce Integration URL for callbacks from the Shifts service.
@return string | getUrl | php | vgrem/phpSPO | src/Teams/WorkforceIntegration.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/WorkforceIntegration.php | MIT |
public function setUrl($value)
{
$this->setProperty("Url", $value, true);
} | Workforce Integration URL for callbacks from the Shifts service.
@var string | setUrl | php | vgrem/phpSPO | src/Teams/WorkforceIntegration.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/WorkforceIntegration.php | MIT |
public function getTopic()
{
if (!$this->isPropertyAvailable("Topic")) {
return null;
}
return $this->getProperty("Topic");
} | The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated.
@return string | getTopic | php | vgrem/phpSPO | src/Teams/Conversation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Conversation.php | MIT |
public function setTopic($value)
{
$this->setProperty("Topic", $value, true);
} | The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated.
@var string | setTopic | php | vgrem/phpSPO | src/Teams/Conversation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Conversation.php | MIT |
public function getHasAttachments()
{
if (!$this->isPropertyAvailable("HasAttachments")) {
return null;
}
return $this->getProperty("HasAttachments");
} | Indicates whether any of the posts within this Conversation has at least one attachment.
@return bool | getHasAttachments | php | vgrem/phpSPO | src/Teams/Conversation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Conversation.php | MIT |
public function setHasAttachments($value)
{
$this->setProperty("HasAttachments", $value, true);
} | Indicates whether any of the posts within this Conversation has at least one attachment.
@var bool | setHasAttachments | php | vgrem/phpSPO | src/Teams/Conversation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Conversation.php | MIT |
public function getUniqueSenders()
{
if (!$this->isPropertyAvailable("UniqueSenders")) {
return null;
}
return $this->getProperty("UniqueSenders");
} | All the users that sent a message to this Conversation.
@return array | getUniqueSenders | php | vgrem/phpSPO | src/Teams/Conversation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Conversation.php | MIT |
public function setUniqueSenders($value)
{
$this->setProperty("UniqueSenders", $value, true);
} | All the users that sent a message to this Conversation.
@var array | setUniqueSenders | php | vgrem/phpSPO | src/Teams/Conversation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Conversation.php | MIT |
public function getPreview()
{
if (!$this->isPropertyAvailable("Preview")) {
return null;
}
return $this->getProperty("Preview");
} | A short summary from the body of the latest post in this converstaion.
@return string | getPreview | php | vgrem/phpSPO | src/Teams/Conversation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Conversation.php | MIT |
public function setPreview($value)
{
$this->setProperty("Preview", $value, true);
} | A short summary from the body of the latest post in this converstaion.
@var string | setPreview | php | vgrem/phpSPO | src/Teams/Conversation.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Conversation.php | MIT |
public function getTimeOffReasonId()
{
return $this->getProperty("TimeOffReasonId");
} | The reason for the time off.
@return string | getTimeOffReasonId | php | vgrem/phpSPO | src/Teams/TimeOffRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TimeOffRequest.php | MIT |
public function setTimeOffReasonId($value)
{
return $this->setProperty("TimeOffReasonId", $value, true);
} | The reason for the time off.
@return self
@var string | setTimeOffReasonId | php | vgrem/phpSPO | src/Teams/TimeOffRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TimeOffRequest.php | MIT |
public function getEnabled()
{
if (!$this->isPropertyAvailable("Enabled")) {
return null;
}
return $this->getProperty("Enabled");
} | @return bool | getEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function setEnabled($value)
{
$this->setProperty("Enabled", $value, true);
} | @var bool | setEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function getTimeZone()
{
if (!$this->isPropertyAvailable("TimeZone")) {
return null;
}
return $this->getProperty("TimeZone");
} | @return string | getTimeZone | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function setTimeZone($value)
{
$this->setProperty("TimeZone", $value, true);
} | @var string | setTimeZone | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function getProvisionStatusCode()
{
if (!$this->isPropertyAvailable("ProvisionStatusCode")) {
return null;
}
return $this->getProperty("ProvisionStatusCode");
} | @return string | getProvisionStatusCode | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function setProvisionStatusCode($value)
{
$this->setProperty("ProvisionStatusCode", $value, true);
} | @var string | setProvisionStatusCode | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function getWorkforceIntegrationIds()
{
if (!$this->isPropertyAvailable("WorkforceIntegrationIds")) {
return null;
}
return $this->getProperty("WorkforceIntegrationIds");
} | @return array | getWorkforceIntegrationIds | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function setWorkforceIntegrationIds($value)
{
$this->setProperty("WorkforceIntegrationIds", $value, true);
} | @var array | setWorkforceIntegrationIds | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function getTimeClockEnabled()
{
if (!$this->isPropertyAvailable("TimeClockEnabled")) {
return null;
}
return $this->getProperty("TimeClockEnabled");
} | @return bool | getTimeClockEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function setTimeClockEnabled($value)
{
$this->setProperty("TimeClockEnabled", $value, true);
} | @var bool | setTimeClockEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function getOpenShiftsEnabled()
{
if (!$this->isPropertyAvailable("OpenShiftsEnabled")) {
return null;
}
return $this->getProperty("OpenShiftsEnabled");
} | @return bool | getOpenShiftsEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function setOpenShiftsEnabled($value)
{
$this->setProperty("OpenShiftsEnabled", $value, true);
} | @var bool | setOpenShiftsEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function getSwapShiftsRequestsEnabled()
{
if (!$this->isPropertyAvailable("SwapShiftsRequestsEnabled")) {
return null;
}
return $this->getProperty("SwapShiftsRequestsEnabled");
} | @return bool | getSwapShiftsRequestsEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function setSwapShiftsRequestsEnabled($value)
{
$this->setProperty("SwapShiftsRequestsEnabled", $value, true);
} | @var bool | setSwapShiftsRequestsEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function getOfferShiftRequestsEnabled()
{
if (!$this->isPropertyAvailable("OfferShiftRequestsEnabled")) {
return null;
}
return $this->getProperty("OfferShiftRequestsEnabled");
} | @return bool | getOfferShiftRequestsEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function setOfferShiftRequestsEnabled($value)
{
$this->setProperty("OfferShiftRequestsEnabled", $value, true);
} | @var bool | setOfferShiftRequestsEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function getTimeOffRequestsEnabled()
{
if (!$this->isPropertyAvailable("TimeOffRequestsEnabled")) {
return null;
}
return $this->getProperty("TimeOffRequestsEnabled");
} | @return bool | getTimeOffRequestsEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function setTimeOffRequestsEnabled($value)
{
$this->setProperty("TimeOffRequestsEnabled", $value, true);
} | @var bool | setTimeOffRequestsEnabled | php | vgrem/phpSPO | src/Teams/Schedule.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Schedule.php | MIT |
public function getDisplayName()
{
return $this->getProperty("DisplayName");
} | Channel name as it will appear to the user in Microsoft Teams.
@return string | getDisplayName | php | vgrem/phpSPO | src/Teams/Channel.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Channel.php | MIT |
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
} | Channel name as it will appear to the user in Microsoft Teams.
@var string | setDisplayName | php | vgrem/phpSPO | src/Teams/Channel.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Channel.php | MIT |
public function getDescription()
{
return $this->getProperty("Description");
} | Optional textual description for the channel.
@return string | getDescription | php | vgrem/phpSPO | src/Teams/Channel.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Channel.php | MIT |
public function setDescription($value)
{
$this->setProperty("Description", $value, true);
} | Optional textual description for the channel.
@var string | setDescription | php | vgrem/phpSPO | src/Teams/Channel.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Channel.php | MIT |
public function getEmail()
{
return $this->getProperty("Email");
} | The email address for sending messages to the channel. Read-only.
@return string | getEmail | php | vgrem/phpSPO | src/Teams/Channel.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Channel.php | MIT |
public function setEmail($value)
{
$this->setProperty("Email", $value, true);
} | The email address for sending messages to the channel. Read-only.
@var string | setEmail | php | vgrem/phpSPO | src/Teams/Channel.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Channel.php | MIT |
public function getWebUrl()
{
return $this->getProperty("WebUrl");
} | A hyperlink that will navigate to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. Read-only.
@return string | getWebUrl | php | vgrem/phpSPO | src/Teams/Channel.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Channel.php | MIT |
public function setWebUrl($value)
{
$this->setProperty("WebUrl", $value, true);
} | A hyperlink that will navigate to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. Read-only.
@var string | setWebUrl | php | vgrem/phpSPO | src/Teams/Channel.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Channel.php | MIT |
public function getTopic()
{
if (!$this->isPropertyAvailable("Topic")) {
return null;
}
return $this->getProperty("Topic");
} | The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated.
@return string | getTopic | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
public function setTopic($value)
{
$this->setProperty("Topic", $value, true);
} | The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated.
@var string | setTopic | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
public function getHasAttachments()
{
if (!$this->isPropertyAvailable("HasAttachments")) {
return null;
}
return $this->getProperty("HasAttachments");
} | Indicates whether any of the posts within this thread has at least one attachment.
@return bool | getHasAttachments | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
public function setHasAttachments($value)
{
$this->setProperty("HasAttachments", $value, true);
} | Indicates whether any of the posts within this thread has at least one attachment.
@var bool | setHasAttachments | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
public function getUniqueSenders()
{
if (!$this->isPropertyAvailable("UniqueSenders")) {
return null;
}
return $this->getProperty("UniqueSenders");
} | All the users that sent a message to this thread.
@return array | getUniqueSenders | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
public function setUniqueSenders($value)
{
$this->setProperty("UniqueSenders", $value, true);
} | All the users that sent a message to this thread.
@var array | setUniqueSenders | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
public function getPreview()
{
if (!$this->isPropertyAvailable("Preview")) {
return null;
}
return $this->getProperty("Preview");
} | A short summary from the body of the latest post in this converstaion.
@return string | getPreview | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
public function setPreview($value)
{
$this->setProperty("Preview", $value, true);
} | A short summary from the body of the latest post in this converstaion.
@var string | setPreview | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
public function getIsLocked()
{
if (!$this->isPropertyAvailable("IsLocked")) {
return null;
}
return $this->getProperty("IsLocked");
} | Indicates if the thread is locked.
@return bool | getIsLocked | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
public function setIsLocked($value)
{
$this->setProperty("IsLocked", $value, true);
} | Indicates if the thread is locked.
@var bool | setIsLocked | php | vgrem/phpSPO | src/Teams/ConversationThread.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ConversationThread.php | MIT |
private function parseCreateResponse($response){
$headerKey = "content-location";
$extraHeaders = $response->getHeaders();
if(array_key_exists($headerKey,$extraHeaders)){
preg_match('#\(\'(.*?)\'\)#', $extraHeaders[$headerKey], $match);
return $match[1];
}
return null;
} | @param Response $response | parseCreateResponse | php | vgrem/phpSPO | src/Teams/TeamCollection.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TeamCollection.php | MIT |
public function getAll($pageSize=null, $pageLoaded=null)
{
$includeProperties = array("id", "resourceProvisioningOptions");
$this->getContext()->getGroups()->select($includeProperties)->getAll($pageSize,
function ($returnType) {
$pagedItems = array_slice($returnType->getData(), $returnType->pageInfo->endIndex);
/** @var Group $group */
foreach ($pagedItems as $group) {
if (in_array("Team", $group->getProperty("ResourceProvisioningOptions"))) {
$this->addChild($group);
}
}
});
return $this;
} | To list all teams in an organization (tenant), you find all groups that have teams,
and then get information for each team. | getAll | php | vgrem/phpSPO | src/Teams/TeamCollection.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TeamCollection.php | MIT |
public function getJoinWebUrl()
{
if (!$this->isPropertyAvailable("JoinWebUrl")) {
return null;
}
return $this->getProperty("JoinWebUrl");
} | @return string | getJoinWebUrl | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function setJoinWebUrl($value)
{
$this->setProperty("JoinWebUrl", $value, true);
} | @var string | setJoinWebUrl | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function getSubject()
{
if (!$this->isPropertyAvailable("Subject")) {
return null;
}
return $this->getProperty("Subject");
} | @return string | getSubject | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function setSubject($value)
{
$this->setProperty("Subject", $value, true);
} | @var string | setSubject | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function getVideoTeleconferenceId()
{
if (!$this->isPropertyAvailable("VideoTeleconferenceId")) {
return null;
}
return $this->getProperty("VideoTeleconferenceId");
} | @return string | getVideoTeleconferenceId | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function setVideoTeleconferenceId($value)
{
$this->setProperty("VideoTeleconferenceId", $value, true);
} | @var string | setVideoTeleconferenceId | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function getParticipants()
{
if (!$this->isPropertyAvailable("Participants")) {
return null;
}
return $this->getProperty("Participants");
} | @return MeetingParticipants | getParticipants | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function setParticipants($value)
{
$this->setProperty("Participants", $value, true);
} | @var MeetingParticipants | setParticipants | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function getAudioConferencing()
{
if (!$this->isPropertyAvailable("AudioConferencing")) {
return null;
}
return $this->getProperty("AudioConferencing");
} | @return AudioConferencing | getAudioConferencing | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function setAudioConferencing($value)
{
$this->setProperty("AudioConferencing", $value, true);
} | @var AudioConferencing | setAudioConferencing | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function getChatInfo()
{
if (!$this->isPropertyAvailable("ChatInfo")) {
return null;
}
return $this->getProperty("ChatInfo");
} | @return ChatInfo | getChatInfo | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function setChatInfo($value)
{
$this->setProperty("ChatInfo", $value, true);
} | @var ChatInfo | setChatInfo | php | vgrem/phpSPO | src/Teams/OnlineMeeting.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OnlineMeeting.php | MIT |
public function getRecipientActionMessage()
{
if (!$this->isPropertyAvailable("RecipientActionMessage")) {
return null;
}
return $this->getProperty("RecipientActionMessage");
} | Custom message sent by recipient of the offer shift request.
@return string | getRecipientActionMessage | php | vgrem/phpSPO | src/Teams/OfferShiftRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OfferShiftRequest.php | MIT |
public function setRecipientActionMessage($value)
{
$this->setProperty("RecipientActionMessage", $value, true);
} | Custom message sent by recipient of the offer shift request.
@var string | setRecipientActionMessage | php | vgrem/phpSPO | src/Teams/OfferShiftRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OfferShiftRequest.php | MIT |
public function getSenderShiftId()
{
if (!$this->isPropertyAvailable("SenderShiftId")) {
return null;
}
return $this->getProperty("SenderShiftId");
} | User ID of the sender of the offer shift request.
@return string | getSenderShiftId | php | vgrem/phpSPO | src/Teams/OfferShiftRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OfferShiftRequest.php | MIT |
public function setSenderShiftId($value)
{
$this->setProperty("SenderShiftId", $value, true);
} | User ID of the sender of the offer shift request.
@var string | setSenderShiftId | php | vgrem/phpSPO | src/Teams/OfferShiftRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OfferShiftRequest.php | MIT |
public function getRecipientUserId()
{
if (!$this->isPropertyAvailable("RecipientUserId")) {
return null;
}
return $this->getProperty("RecipientUserId");
} | User ID of the recipient of the offer shift request.
@return string | getRecipientUserId | php | vgrem/phpSPO | src/Teams/OfferShiftRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OfferShiftRequest.php | MIT |
public function setRecipientUserId($value)
{
$this->setProperty("RecipientUserId", $value, true);
} | User ID of the recipient of the offer shift request.
@var string | setRecipientUserId | php | vgrem/phpSPO | src/Teams/OfferShiftRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/OfferShiftRequest.php | MIT |
public function getRecipientShiftId()
{
if (!$this->isPropertyAvailable("RecipientShiftId")) {
return null;
}
return $this->getProperty("RecipientShiftId");
} | ShiftId for the recipient user with whom the request is to swap.
@return string | getRecipientShiftId | php | vgrem/phpSPO | src/Teams/SwapShiftsChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/SwapShiftsChangeRequest.php | MIT |
public function setRecipientShiftId($value)
{
$this->setProperty("RecipientShiftId", $value, true);
} | ShiftId for the recipient user with whom the request is to swap.
@var string | setRecipientShiftId | php | vgrem/phpSPO | src/Teams/SwapShiftsChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/SwapShiftsChangeRequest.php | MIT |
public function getSenderMessage()
{
if (!$this->isPropertyAvailable("SenderMessage")) {
return null;
}
return $this->getProperty("SenderMessage");
} | @return string | getSenderMessage | php | vgrem/phpSPO | src/Teams/ScheduleChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ScheduleChangeRequest.php | MIT |
public function setSenderMessage($value)
{
$this->setProperty("SenderMessage", $value, true);
} | @var string | setSenderMessage | php | vgrem/phpSPO | src/Teams/ScheduleChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ScheduleChangeRequest.php | MIT |
public function getManagerActionMessage()
{
if (!$this->isPropertyAvailable("ManagerActionMessage")) {
return null;
}
return $this->getProperty("ManagerActionMessage");
} | @return string | getManagerActionMessage | php | vgrem/phpSPO | src/Teams/ScheduleChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ScheduleChangeRequest.php | MIT |
public function setManagerActionMessage($value)
{
$this->setProperty("ManagerActionMessage", $value, true);
} | @var string | setManagerActionMessage | php | vgrem/phpSPO | src/Teams/ScheduleChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ScheduleChangeRequest.php | MIT |
public function getSenderUserId()
{
if (!$this->isPropertyAvailable("SenderUserId")) {
return null;
}
return $this->getProperty("SenderUserId");
} | @return string | getSenderUserId | php | vgrem/phpSPO | src/Teams/ScheduleChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ScheduleChangeRequest.php | MIT |
public function setSenderUserId($value)
{
$this->setProperty("SenderUserId", $value, true);
} | @var string | setSenderUserId | php | vgrem/phpSPO | src/Teams/ScheduleChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ScheduleChangeRequest.php | MIT |
public function getManagerUserId()
{
if (!$this->isPropertyAvailable("ManagerUserId")) {
return null;
}
return $this->getProperty("ManagerUserId");
} | @return string | getManagerUserId | php | vgrem/phpSPO | src/Teams/ScheduleChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ScheduleChangeRequest.php | MIT |
public function setManagerUserId($value)
{
$this->setProperty("ManagerUserId", $value, true);
} | @var string | setManagerUserId | php | vgrem/phpSPO | src/Teams/ScheduleChangeRequest.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/ScheduleChangeRequest.php | MIT |
public function getIsMuted()
{
if (!$this->isPropertyAvailable("IsMuted")) {
return null;
}
return $this->getProperty("IsMuted");
} | @return bool | getIsMuted | php | vgrem/phpSPO | src/Teams/Participant.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Participant.php | MIT |
public function setIsMuted($value)
{
$this->setProperty("IsMuted", $value, true);
} | @var bool | setIsMuted | php | vgrem/phpSPO | src/Teams/Participant.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Participant.php | MIT |
public function getIsInLobby()
{
if (!$this->isPropertyAvailable("IsInLobby")) {
return null;
}
return $this->getProperty("IsInLobby");
} | @return bool | getIsInLobby | php | vgrem/phpSPO | src/Teams/Participant.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Participant.php | MIT |
public function setIsInLobby($value)
{
$this->setProperty("IsInLobby", $value, true);
} | @var bool | setIsInLobby | php | vgrem/phpSPO | src/Teams/Participant.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Participant.php | MIT |
public function getInfo()
{
return $this->getProperty("Info", new ParticipantInfo());
} | @return ParticipantInfo | getInfo | php | vgrem/phpSPO | src/Teams/Participant.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Participant.php | MIT |
public function setInfo($value)
{
$this->setProperty("Info", $value, true);
} | @var ParticipantInfo | setInfo | php | vgrem/phpSPO | src/Teams/Participant.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/Participant.php | MIT |
public function getDisplayName()
{
if (!$this->isPropertyAvailable("DisplayName")) {
return null;
}
return $this->getProperty("DisplayName");
} | @return string | getDisplayName | php | vgrem/phpSPO | src/Teams/TimeOffReason.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TimeOffReason.php | MIT |
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
} | @var string | setDisplayName | php | vgrem/phpSPO | src/Teams/TimeOffReason.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TimeOffReason.php | MIT |
public function getIsActive()
{
if (!$this->isPropertyAvailable("IsActive")) {
return null;
}
return $this->getProperty("IsActive");
} | @return bool | getIsActive | php | vgrem/phpSPO | src/Teams/TimeOffReason.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TimeOffReason.php | MIT |
public function setIsActive($value)
{
$this->setProperty("IsActive", $value, true);
} | @var bool | setIsActive | php | vgrem/phpSPO | src/Teams/TimeOffReason.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TimeOffReason.php | MIT |
public function getUserId()
{
return $this->getProperty("UserId");
} | @return string | getUserId | php | vgrem/phpSPO | src/Teams/TimeOff.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TimeOff.php | MIT |
public function setUserId($value)
{
$this->setProperty("UserId", $value, true);
} | @var string | setUserId | php | vgrem/phpSPO | src/Teams/TimeOff.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TimeOff.php | MIT |
public function getDisplayName()
{
if (!$this->isPropertyAvailable("DisplayName")) {
return null;
}
return $this->getProperty("DisplayName");
} | @return string | getDisplayName | php | vgrem/phpSPO | src/Teams/TeamsTab.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TeamsTab.php | MIT |
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
} | @var string | setDisplayName | php | vgrem/phpSPO | src/Teams/TeamsTab.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TeamsTab.php | MIT |
public function getWebUrl()
{
if (!$this->isPropertyAvailable("WebUrl")) {
return null;
}
return $this->getProperty("WebUrl");
} | @return string | getWebUrl | php | vgrem/phpSPO | src/Teams/TeamsTab.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TeamsTab.php | MIT |
public function setWebUrl($value)
{
$this->setProperty("WebUrl", $value, true);
} | @var string | setWebUrl | php | vgrem/phpSPO | src/Teams/TeamsTab.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TeamsTab.php | MIT |
public function getConfiguration()
{
if (!$this->isPropertyAvailable("Configuration")) {
return null;
}
return $this->getProperty("Configuration");
} | @return TeamsTabConfiguration | getConfiguration | php | vgrem/phpSPO | src/Teams/TeamsTab.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TeamsTab.php | MIT |
public function setConfiguration($value)
{
$this->setProperty("Configuration", $value, true);
} | @var TeamsTabConfiguration | setConfiguration | php | vgrem/phpSPO | src/Teams/TeamsTab.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TeamsTab.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 application that is linked to the tab. This cannot be changed after tab creation.
@return TeamsApp | getTeamsApp | php | vgrem/phpSPO | src/Teams/TeamsTab.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/TeamsTab.php | MIT |
public function getDisplayName()
{
return $this->getProperty("DisplayName");
} | @return string | getDisplayName | php | vgrem/phpSPO | src/Teams/SchedulingGroup.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/SchedulingGroup.php | MIT |
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
} | @var string | setDisplayName | php | vgrem/phpSPO | src/Teams/SchedulingGroup.php | https://github.com/vgrem/phpSPO/blob/master/src/Teams/SchedulingGroup.php | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.