????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.116.62.169 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 : /var/www/icad.astacus.se/sharepoint/vendor/vgrem/php-spo/src/Graph/ |
Upload File : |
<?php /** * Generated by phpSPO model generator 2020-05-24T21:54:31+00:00 */ namespace Office365\Graph; use Office365\Runtime\ClientObject; use Office365\Runtime\ResourcePath; class Invitation extends ClientObject { /** * The display name of the user being invited. * @return string */ public function getInvitedUserDisplayName() { if (!$this->isPropertyAvailable("InvitedUserDisplayName")) { return null; } return $this->getProperty("InvitedUserDisplayName"); } /** * The display name of the user being invited. * @var string */ public function setInvitedUserDisplayName($value) { $this->setProperty("InvitedUserDisplayName", $value, true); } /** * The userType of the user being invited. By default, this is Guest. You can invite as Member if you are a company administrator. * @return string */ public function getInvitedUserType() { if (!$this->isPropertyAvailable("InvitedUserType")) { return null; } return $this->getProperty("InvitedUserType"); } /** * The userType of the user being invited. By default, this is Guest. You can invite as Member if you are a company administrator. * @var string */ public function setInvitedUserType($value) { $this->setProperty("InvitedUserType", $value, true); } /** * The email address of the user being invited. Required. The following special characters are not permitted in the email address:<br><ul><li>Tilde (~)</li><li>Exclamation point (`!`)</li><li>Number sign (`#`)</li><li>Dollar sign (`$`)</li><li>Percent (`%`)</li><li>Circumflex (`^`)</li><li>Ampersand (`&`)</li><li>Asterisk (`*`)</li><li>Parentheses (`( )`)</li><li>Plus sign (`+`)</li><li>Equal sign (`=`)</li><li>Brackets (`[ ]`)</li><li>Braces (`{ }`)</li><li>Backslash (`\`)</li><li>Slash mark (`/`)</li><li>Pipe (`\ * @return string */ public function getInvitedUserEmailAddress() { if (!$this->isPropertyAvailable("InvitedUserEmailAddress")) { return null; } return $this->getProperty("InvitedUserEmailAddress"); } /** * The email address of the user being invited. Required. The following special characters are not permitted in the email address:<br><ul><li>Tilde (~)</li><li>Exclamation point (`!`)</li><li>Number sign (`#`)</li><li>Dollar sign (`$`)</li><li>Percent (`%`)</li><li>Circumflex (`^`)</li><li>Ampersand (`&`)</li><li>Asterisk (`*`)</li><li>Parentheses (`( )`)</li><li>Plus sign (`+`)</li><li>Equal sign (`=`)</li><li>Brackets (`[ ]`)</li><li>Braces (`{ }`)</li><li>Backslash (`\`)</li><li>Slash mark (`/`)</li><li>Pipe (`\ * @var string */ public function setInvitedUserEmailAddress($value) { $this->setProperty("InvitedUserEmailAddress", $value, true); } /** * Indicates whether an email should be sent to the user being invited or not. The default is false. * @return bool */ public function getSendInvitationMessage() { if (!$this->isPropertyAvailable("SendInvitationMessage")) { return null; } return $this->getProperty("SendInvitationMessage"); } /** * Indicates whether an email should be sent to the user being invited or not. The default is false. * @var bool */ public function setSendInvitationMessage($value) { $this->setProperty("SendInvitationMessage", $value, true); } /** * The URL user should be redirected to once the invitation is redeemed. Required. * @return string */ public function getInviteRedirectUrl() { if (!$this->isPropertyAvailable("InviteRedirectUrl")) { return null; } return $this->getProperty("InviteRedirectUrl"); } /** * The URL user should be redirected to once the invitation is redeemed. Required. * @var string */ public function setInviteRedirectUrl($value) { $this->setProperty("InviteRedirectUrl", $value, true); } /** * The URL user can use to redeem his invitation. Read-Only * @return string */ public function getInviteRedeemUrl() { if (!$this->isPropertyAvailable("InviteRedeemUrl")) { return null; } return $this->getProperty("InviteRedeemUrl"); } /** * The URL user can use to redeem his invitation. Read-Only * @var string */ public function setInviteRedeemUrl($value) { $this->setProperty("InviteRedeemUrl", $value, true); } /** * The status of the invitation. Possible values: PendingAcceptance, Completed, InProgress, and Error * @return string */ public function getStatus() { if (!$this->isPropertyAvailable("Status")) { return null; } return $this->getProperty("Status"); } /** * The status of the invitation. Possible values: PendingAcceptance, Completed, InProgress, and Error * @var string */ public function setStatus($value) { $this->setProperty("Status", $value, true); } /** * Additional configuration for the message being sent to the invited user, including customizing message text, language and cc recipient list. * @return InvitedUserMessageInfo */ public function getInvitedUserMessageInfo() { if (!$this->isPropertyAvailable("InvitedUserMessageInfo")) { return null; } return $this->getProperty("InvitedUserMessageInfo"); } /** * Additional configuration for the message being sent to the invited user, including customizing message text, language and cc recipient list. * @var InvitedUserMessageInfo */ public function setInvitedUserMessageInfo($value) { $this->setProperty("InvitedUserMessageInfo", $value, true); } /** * The user created as part of the invitation creation. Read-Only * @return User */ public function getInvitedUser() { if (!$this->isPropertyAvailable("InvitedUser")) { $this->setProperty("InvitedUser", new User($this->getContext(), new ResourcePath("InvitedUser", $this->getResourcePath()))); } return $this->getProperty("InvitedUser"); } }