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 getOpenShiftId() { if (!$this->isPropertyAvailable("OpenShiftId")) { return null; } return $this->getProperty("OpenShiftId"); }
ID for the open shift. @return string
getOpenShiftId
php
vgrem/phpSPO
src/Outlook/OpenShiftChangeRequest.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/OpenShiftChangeRequest.php
MIT
public function setOpenShiftId($value) { $this->setProperty("OpenShiftId", $value, true); }
ID for the open shift. @var string
setOpenShiftId
php
vgrem/phpSPO
src/Outlook/OpenShiftChangeRequest.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/OpenShiftChangeRequest.php
MIT
public function getHasAttachments() { if (!$this->isPropertyAvailable("HasAttachments")) { return null; } return $this->getProperty("HasAttachments"); }
Indicates whether the post has at least one attachment. This is a default property. @return bool
getHasAttachments
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function setHasAttachments($value) { $this->setProperty("HasAttachments", $value, true); }
Indicates whether the post has at least one attachment. This is a default property. @var bool
setHasAttachments
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function getFrom() { if (!$this->isPropertyAvailable("From")) { return null; } return $this->getProperty("From"); }
Used in delegate access scenarios. Indicates who posted the message on behalf of another user. This is a default property. @return Recipient
getFrom
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function setFrom($value) { $this->setProperty("From", $value, true); }
Used in delegate access scenarios. Indicates who posted the message on behalf of another user. This is a default property. @var Recipient
setFrom
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function getSender() { if (!$this->isPropertyAvailable("Sender")) { return null; } return $this->getProperty("Sender"); }
Contains the address of the sender. The value of Sender is assumed to be the address of the authenticated user in the case when Sender is not specified. This is a default property. @return Recipient
getSender
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function setSender($value) { $this->setProperty("Sender", $value, true); }
Contains the address of the sender. The value of Sender is assumed to be the address of the authenticated user in the case when Sender is not specified. This is a default property. @var Recipient
setSender
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function getConversationThreadId() { if (!$this->isPropertyAvailable("ConversationThreadId")) { return null; } return $this->getProperty("ConversationThreadId"); }
Unique ID of the conversation thread. Read-only. @return string
getConversationThreadId
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function setConversationThreadId($value) { $this->setProperty("ConversationThreadId", $value, true); }
Unique ID of the conversation thread. Read-only. @var string
setConversationThreadId
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function getConversationId() { if (!$this->isPropertyAvailable("ConversationId")) { return null; } return $this->getProperty("ConversationId"); }
Unique ID of the conversation. Read-only. @return string
getConversationId
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function setConversationId($value) { $this->setProperty("ConversationId", $value, true); }
Unique ID of the conversation. Read-only. @var string
setConversationId
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function getBody() { if (!$this->isPropertyAvailable("Body")) { return null; } return $this->getProperty("Body"); }
The contents of the post. This is a default property. This property can be null. @return ItemBody
getBody
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function setBody($value) { $this->setProperty("Body", $value, true); }
The contents of the post. This is a default property. This property can be null. @var ItemBody
setBody
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function getInReplyTo() { if (!$this->isPropertyAvailable("InReplyTo")) { $this->setProperty("InReplyTo", new Post($this->getContext(), new ResourcePath("InReplyTo", $this->getResourcePath()))); } return $this->getProperty("InReplyTo"); }
Read-only. @return Post
getInReplyTo
php
vgrem/phpSPO
src/Outlook/Post.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Post.php
MIT
public function __construct($name=null, $address=null) { $this->Name = $name; $this->Address = $address; parent::__construct(); }
@param string $name @param string $address
__construct
php
vgrem/phpSPO
src/Outlook/EmailAddress.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/EmailAddress.php
MIT
public function getChangeKey() { return $this->getProperty("ChangeKey", null); }
@return string
getChangeKey
php
vgrem/phpSPO
src/Outlook/OutlookItem.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/OutlookItem.php
MIT
public function setChangeKey($value) { $this->setProperty("ChangeKey", $value, true); }
@var string
setChangeKey
php
vgrem/phpSPO
src/Outlook/OutlookItem.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/OutlookItem.php
MIT
public function getCategories() { return $this->getProperty("Categories", null); }
@return array
getCategories
php
vgrem/phpSPO
src/Outlook/OutlookItem.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/OutlookItem.php
MIT
public function setCategories($value) { $this->setProperty("Categories", $value, true); }
@var array
setCategories
php
vgrem/phpSPO
src/Outlook/OutlookItem.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/OutlookItem.php
MIT
public function getDisplayName() { return $this->getProperty("DisplayName"); }
The mailFolder's display name. @return string
getDisplayName
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function setDisplayName($value) { return $this->setProperty("DisplayName", $value, true); }
The mailFolder's display name. @return self @var string
setDisplayName
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function getParentFolderId() { return $this->getProperty("ParentFolderId"); }
The unique identifier for the mailFolder's parent mailFolder. @return string
getParentFolderId
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function setParentFolderId($value) { $this->setProperty("ParentFolderId", $value, true); }
The unique identifier for the mailFolder's parent mailFolder. @var string
setParentFolderId
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function getChildFolderCount() { return $this->getProperty("ChildFolderCount"); }
The number of immediate child mailFolders in the current mailFolder. @return integer
getChildFolderCount
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function setChildFolderCount($value) { $this->setProperty("ChildFolderCount", $value, true); }
The number of immediate child mailFolders in the current mailFolder. @var integer
setChildFolderCount
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function getUnreadItemCount() { return $this->getProperty("UnreadItemCount"); }
The number of items in the mailFolder marked as unread. @return integer
getUnreadItemCount
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function setUnreadItemCount($value) { $this->setProperty("UnreadItemCount", $value, true); }
The number of items in the mailFolder marked as unread. @var integer
setUnreadItemCount
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function getTotalItemCount() { return $this->getProperty("TotalItemCount"); }
The number of items in the mailFolder. @return integer
getTotalItemCount
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function setTotalItemCount($value) { $this->setProperty("TotalItemCount", $value, true); }
The number of items in the mailFolder. @var integer
setTotalItemCount
php
vgrem/phpSPO
src/Outlook/MailFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/MailFolder.php
MIT
public function getParentFolderId() { return $this->getProperty("ParentFolderId"); }
The ID of the contact's parent folder. @return string
getParentFolderId
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setParentFolderId($value) { $this->setProperty("ParentFolderId", $value, true); }
The ID of the contact's parent folder. @var string
setParentFolderId
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getFileAs() { return $this->getProperty("FileAs"); }
The name the contact is filed under. @return string
getFileAs
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setFileAs($value) { $this->setProperty("FileAs", $value, true); }
The name the contact is filed under. @var string
setFileAs
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getDisplayName() { return $this->getProperty("DisplayName"); }
The contact's display name. You can specify the display name in a [create](../api/user-post-contacts.md) or [update](../api/contact-update.md) operation. Note that later updates to other properties may cause an automatically generated value to overwrite the displayName value you have specified. To preserve a pre-existing value, always include it as displayName in an [update](../api/contact-update.md) operation. @return string
getDisplayName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setDisplayName($value) { $this->setProperty("DisplayName", $value, true); }
The contact's display name. You can specify the display name in a [create](../api/user-post-contacts.md) or [update](../api/contact-update.md) operation. Note that later updates to other properties may cause an automatically generated value to overwrite the displayName value you have specified. To preserve a pre-existing value, always include it as displayName in an [update](../api/contact-update.md) operation. @var string
setDisplayName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getGivenName() { return $this->getProperty("GivenName"); }
The contact's given name. @return string
getGivenName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setGivenName($value) { return $this->setProperty("GivenName", $value, true); }
The contact's given name. @return self @var string
setGivenName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getInitials() { return $this->getProperty("Initials"); }
The contact's initials. @return string
getInitials
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setInitials($value) { return $this->setProperty("Initials", $value, true); }
The contact's initials. @return self @var string
setInitials
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getMiddleName() { return $this->getProperty("MiddleName"); }
The contact's middle name. @return string
getMiddleName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setMiddleName($value) { return $this->setProperty("MiddleName", $value, true); }
The contact's middle name. @return self @var string
setMiddleName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getNickName() { return $this->getProperty("NickName"); }
The contact's nickname. @return string
getNickName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setNickName($value) { return $this->setProperty("NickName", $value, true); }
The contact's nickname. @return self @var string
setNickName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getSurname() { return $this->getProperty("Surname"); }
The contact's surname. @return string
getSurname
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setSurname($value) { return $this->setProperty("Surname", $value, true); }
The contact's surname. @return self @var string
setSurname
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getTitle() { return $this->getProperty("Title"); }
The contact's title. @return string
getTitle
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setTitle($value) { return $this->setProperty("Title", $value, true); }
The contact's title. @return self @var string
setTitle
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getYomiGivenName() { return $this->getProperty("YomiGivenName"); }
The phonetic Japanese given name (first name) of the contact. @return string
getYomiGivenName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setYomiGivenName($value) { $this->setProperty("YomiGivenName", $value, true); }
The phonetic Japanese given name (first name) of the contact. @var string
setYomiGivenName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getYomiSurname() { return $this->getProperty("YomiSurname"); }
The phonetic Japanese surname (last name) of the contact. @return string
getYomiSurname
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setYomiSurname($value) { $this->setProperty("YomiSurname", $value, true); }
The phonetic Japanese surname (last name) of the contact. @var string
setYomiSurname
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getYomiCompanyName() { return $this->getProperty("YomiCompanyName"); }
The phonetic Japanese company name of the contact. @return string
getYomiCompanyName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setYomiCompanyName($value) { $this->setProperty("YomiCompanyName", $value, true); }
The phonetic Japanese company name of the contact. @var string
setYomiCompanyName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getGeneration() { return $this->getProperty("Generation"); }
The contact's generation. @return string
getGeneration
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setGeneration($value) { $this->setProperty("Generation", $value, true); }
The contact's generation. @var string
setGeneration
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getImAddresses() { return $this->getProperty("ImAddresses"); }
The contact's instant messaging (IM) addresses. @return array
getImAddresses
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setImAddresses($value) { $this->setProperty("ImAddresses", $value, true); }
The contact's instant messaging (IM) addresses. @var array
setImAddresses
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getJobTitle() { return $this->getProperty("JobTitle"); }
The contact’s job title. @return string
getJobTitle
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setJobTitle($value) { return $this->setProperty("JobTitle", $value, true); }
The contact’s job title. @return self @var string
setJobTitle
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getCompanyName() { return $this->getProperty("CompanyName"); }
The name of the contact's company. @return string
getCompanyName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setCompanyName($value) { return $this->setProperty("CompanyName", $value, true); }
The name of the contact's company. @return self @var string
setCompanyName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getDepartment() { return $this->getProperty("Department"); }
The contact's department. @return string
getDepartment
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setDepartment($value) { return $this->setProperty("Department", $value, true); }
The contact's department. @return self @var string
setDepartment
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getOfficeLocation() { return $this->getProperty("OfficeLocation"); }
The location of the contact's office. @return string
getOfficeLocation
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setOfficeLocation($value) { $this->setProperty("OfficeLocation", $value, true); }
The location of the contact's office. @var string
setOfficeLocation
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getProfession() { return $this->getProperty("Profession"); }
The contact's profession. @return string
getProfession
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setProfession($value) { return $this->setProperty("Profession", $value, true); }
The contact's profession. @return self @var string
setProfession
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getBusinessHomePage() { return $this->getProperty("BusinessHomePage"); }
The business home page of the contact. @return string
getBusinessHomePage
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setBusinessHomePage($value) { $this->setProperty("BusinessHomePage", $value, true); }
The business home page of the contact. @var string
setBusinessHomePage
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getAssistantName() { return $this->getProperty("AssistantName"); }
The name of the contact's assistant. @return string
getAssistantName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setAssistantName($value) { $this->setProperty("AssistantName", $value, true); }
The name of the contact's assistant. @var string
setAssistantName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getManager() { return $this->getProperty("Manager"); }
The name of the contact's manager. @return string
getManager
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setManager($value) { return $this->setProperty("Manager", $value, true); }
The name of the contact's manager. @return self @var string
setManager
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getHomePhones() { return $this->getProperty("HomePhones"); }
The contact's home phone numbers. @return array
getHomePhones
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setHomePhones($value) { $this->setProperty("HomePhones", $value, true); }
The contact's home phone numbers. @var array
setHomePhones
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getMobilePhone() { return $this->getProperty("MobilePhone"); }
The contact's mobile phone number. @return string
getMobilePhone
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setMobilePhone($value) { return $this->setProperty("MobilePhone", $value, true); }
The contact's mobile phone number. @return self @var string
setMobilePhone
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getBusinessPhones() { return $this->getProperty("BusinessPhones"); }
The contact's business phone numbers. @return string[]
getBusinessPhones
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setBusinessPhones($value) { return $this->setProperty("BusinessPhones", $value, true); }
The contact's business phone numbers. @return self @var array
setBusinessPhones
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getSpouseName() { return $this->getProperty("SpouseName"); }
The name of the contact's spouse/partner. @return string
getSpouseName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setSpouseName($value) { return $this->setProperty("SpouseName", $value, true); }
The name of the contact's spouse/partner. @return self @var string
setSpouseName
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getPersonalNotes() { return $this->getProperty("PersonalNotes"); }
The user's notes about the contact. @return string
getPersonalNotes
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setPersonalNotes($value) { return $this->setProperty("PersonalNotes", $value, true); }
The user's notes about the contact. @return self @var string
setPersonalNotes
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getChildren() { return $this->getProperty("Children"); }
The names of the contact's children. @return array
getChildren
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setChildren($value) { $this->setProperty("Children", $value, true); }
The names of the contact's children. @var array
setChildren
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getPhoto() { return $this->getProperty("Photo", new ProfilePhoto($this->getContext(), new ResourcePath("Photo", $this->getResourcePath()))); }
Optional contact picture. You can get or set a photo for a contact. @return ProfilePhoto
getPhoto
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getHomeAddress() { return $this->getProperty("HomeAddress", new PhysicalAddress()); }
The contact's home address. @return PhysicalAddress
getHomeAddress
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setHomeAddress($value) { $this->setProperty("HomeAddress", $value, true); }
The contact's home address. @var PhysicalAddress
setHomeAddress
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getBusinessAddress() { return $this->getProperty("BusinessAddress", new PhysicalAddress()); }
The contact's business address. @return PhysicalAddress
getBusinessAddress
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setBusinessAddress($value) { $this->setProperty("BusinessAddress", $value, true); }
The contact's business address. @var PhysicalAddress
setBusinessAddress
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getOtherAddress() { return $this->getProperty("OtherAddress", new PhysicalAddress()); }
Other addresses for the contact. @return PhysicalAddress
getOtherAddress
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setOtherAddress($value) { $this->setProperty("OtherAddress", $value, true); return $this; }
Other addresses for the contact. @var PhysicalAddress @return self
setOtherAddress
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getEmailAddresses(){ return $this->getProperty("EmailAddresses",new ClientValueCollection(EmailAddress::class)); }
@return ClientValueCollection
getEmailAddresses
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function setEmailAddresses($values){ return $this->setProperty("EmailAddresses", ClientValueCollection::fromArray(EmailAddress::class,$values)); }
@param EmailAddress[] $values @return Contact
setEmailAddresses
php
vgrem/phpSPO
src/Outlook/Contacts/Contact.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/Contact.php
MIT
public function getParentFolderId() { return $this->getProperty("ParentFolderId"); }
The ID of the folder's parent folder. @return string
getParentFolderId
php
vgrem/phpSPO
src/Outlook/Contacts/ContactFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/ContactFolder.php
MIT
public function setParentFolderId($value) { $this->setProperty("ParentFolderId", $value, true); }
The ID of the folder's parent folder. @var string
setParentFolderId
php
vgrem/phpSPO
src/Outlook/Contacts/ContactFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/ContactFolder.php
MIT
public function getDisplayName() { return $this->getProperty("DisplayName"); }
The folder's display name. @return string
getDisplayName
php
vgrem/phpSPO
src/Outlook/Contacts/ContactFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/ContactFolder.php
MIT
public function setDisplayName($value) { return $this->setProperty("DisplayName", $value, true); }
The folder's display name. @return self @var string
setDisplayName
php
vgrem/phpSPO
src/Outlook/Contacts/ContactFolder.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Contacts/ContactFolder.php
MIT
public function getCanAccept() { if (!$this->isPropertyAvailable("CanAccept")) { return null; } return $this->getProperty("CanAccept"); }
@return bool
getCanAccept
php
vgrem/phpSPO
src/Outlook/Calendars/CalendarSharingMessage.php
https://github.com/vgrem/phpSPO/blob/master/src/Outlook/Calendars/CalendarSharingMessage.php
MIT