????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.165 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/bin/vendor/vgrem/php-spo/src/OutlookServices/ |
Upload File : |
<?php
/**
* This file was generated by phpSPO model generator 2020-04-25T20:52:14+00:00 16.0.20008.12009
*/
namespace Office365\OutlookServices;
/**
* A contact, which is an item in Outlook for users to organize and save information about the people and organizations
* that they communicate with. Contacts are contained in contact folders.
*/
class Contact extends Item
{
/**
* The name of the contact's assistant.
* @var string
*/
public $AssistantName;
/**
* The ID of the contact's parent folder.
* @var string
*/
public $ParentFolderId;
/**
* The contact's birthday.
* @var string
*/
public $Birthday;
/**
* The contact's given name.
* @var string
*/
public $GivenName;
/**
* The contact's initials.
* @var string
*/
public $Initials;
/**
* The contact's surname.
* @var string
*/
public $Surname;
/**
* The contact's job title.
* @var string
*/
public $JobTitle;
/**
* The contact's company name.
* @var string
*/
public $CompanyName;
/**
* @var string
*/
public $Department;
/**
* @var array
*/
public $BusinessPhones;
/**
* @var string
*/
public $MobilePhone1;
/**
* The contact's email addresses.
* @var array
*/
public $EmailAddresses;
/**
* The contact's generation.
* @var string
*/
public $Generation;
/**
* The contact's home address.
* @var PhysicalAddress
*/
public $HomeAddress;
/**
* The contact's business address.
* @var PhysicalAddress
*/
public $BusinessAddress;
/**
* @var PhysicalAddress
*/
public $OtherAddress;
/**
* @var array
*/
public $HomePhones;
/**
* The contact's instant messaging (IM) addresses.
* @var array
*/
public $ImAddresses;
/**
* The name of the contact's manager.
* @var string
*/
public $Manager;
/**
* The contact's middle name.
* @var string
*/
public $MiddleName;
/**
* The contact's nickname.
* @var string
*/
public $NickName;
/**
* The contact's notes.
* @var string
*/
public $PersonalNotes;
/**
* The contact's website.
* @var string
*/
public $BusinessHomePage;
/**
* @var string
*/
public $FileAs;
/**
* @var string
*/
public $DisplayName;
/**
* @var string
*/
public $Title;
/**
* @var string
*/
public $YomiGivenName;
/**
* @var string
*/
public $YomiSurname;
/**
* @var string
*/
public $YomiCompanyName;
/**
* @var string
*/
public $OfficeLocation;
/**
* @var string
*/
public $Profession;
/**
* @return PhysicalAddress
*/
public function getHomeAddress()
{
if (!$this->isPropertyAvailable("HomeAddress")) {
return null;
}
return $this->getProperty("HomeAddress");
}
/**
* @var PhysicalAddress
*/
public function setHomeAddress($value)
{
$this->setProperty("HomeAddress", $value, true);
}
/**
* @return PhysicalAddress
*/
public function getBusinessAddress()
{
if (!$this->isPropertyAvailable("BusinessAddress")) {
return null;
}
return $this->getProperty("BusinessAddress");
}
/**
* @var PhysicalAddress
*/
public function setBusinessAddress($value)
{
$this->setProperty("BusinessAddress", $value, true);
}
/**
* @return PhysicalAddress
*/
public function getOtherAddress()
{
if (!$this->isPropertyAvailable("OtherAddress")) {
return null;
}
return $this->getProperty("OtherAddress");
}
/**
* @var PhysicalAddress
*/
public function setOtherAddress($value)
{
$this->setProperty("OtherAddress", $value, true);
}
/**
* @var string
*/
public $SpouseName;
/**
* @var array
*/
public $Children;
}