????JFIF??x?x????'403WebShell
403Webshell
Server IP : 79.136.114.73  /  Your IP : 216.73.216.61
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/Graph/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/local/bin/vendor/vgrem/php-spo/src/Graph/SignIn.php
<?php

/**
 * Generated by phpSPO model generator 2020-05-29T07:14:53+00:00 
 */
namespace Office365\Graph;

/**
 * Details user and application sign-in activity for a tenant (directory).
 */
class SignIn extends Entity
{
    /**
     * Display name of the user that initiated the sign-in.
     * @return string
     */
    public function getUserDisplayName()
    {
        if (!$this->isPropertyAvailable("UserDisplayName")) {
            return null;
        }
        return $this->getProperty("UserDisplayName");
    }
    /**
     * Display name of the user that initiated the sign-in.
     * @var string
     */
    public function setUserDisplayName($value)
    {
        $this->setProperty("UserDisplayName", $value, true);
    }
    /**
     * User principal name of the user that initiated the sign-in.
     * @return string
     */
    public function getUserPrincipalName()
    {
        if (!$this->isPropertyAvailable("UserPrincipalName")) {
            return null;
        }
        return $this->getProperty("UserPrincipalName");
    }
    /**
     * User principal name of the user that initiated the sign-in.
     * @var string
     */
    public function setUserPrincipalName($value)
    {
        $this->setProperty("UserPrincipalName", $value, true);
    }
    /**
     * ID of the user that initiated the sign-in.
     * @return string
     */
    public function getUserId()
    {
        if (!$this->isPropertyAvailable("UserId")) {
            return null;
        }
        return $this->getProperty("UserId");
    }
    /**
     * ID of the user that initiated the sign-in.
     * @var string
     */
    public function setUserId($value)
    {
        $this->setProperty("UserId", $value, true);
    }
    /**
     * Unique GUID representing the app ID in the Azure Active Directory.
     * @return string
     */
    public function getAppId()
    {
        if (!$this->isPropertyAvailable("AppId")) {
            return null;
        }
        return $this->getProperty("AppId");
    }
    /**
     * Unique GUID representing the app ID in the Azure Active Directory.
     * @var string
     */
    public function setAppId($value)
    {
        $this->setProperty("AppId", $value, true);
    }
    /**
     * App name displayed in the Azure Portal.
     * @return string
     */
    public function getAppDisplayName()
    {
        if (!$this->isPropertyAvailable("AppDisplayName")) {
            return null;
        }
        return $this->getProperty("AppDisplayName");
    }
    /**
     * App name displayed in the Azure Portal.
     * @var string
     */
    public function setAppDisplayName($value)
    {
        $this->setProperty("AppDisplayName", $value, true);
    }
    /**
     * IP address of the client used to sign in.
     * @return string
     */
    public function getIpAddress()
    {
        if (!$this->isPropertyAvailable("IpAddress")) {
            return null;
        }
        return $this->getProperty("IpAddress");
    }
    /**
     * IP address of the client used to sign in.
     * @var string
     */
    public function setIpAddress($value)
    {
        $this->setProperty("IpAddress", $value, true);
    }
    /**
     * Identifies the legacy client used for sign-in activity.  Includes Browser, Exchange Active Sync, modern clients, IMAP, MAPI, SMTP, and POP.
     * @return string
     */
    public function getClientAppUsed()
    {
        if (!$this->isPropertyAvailable("ClientAppUsed")) {
            return null;
        }
        return $this->getProperty("ClientAppUsed");
    }
    /**
     * Identifies the legacy client used for sign-in activity.  Includes Browser, Exchange Active Sync, modern clients, IMAP, MAPI, SMTP, and POP.
     * @var string
     */
    public function setClientAppUsed($value)
    {
        $this->setProperty("ClientAppUsed", $value, true);
    }
    /**
     * The request ID sent from the client when the sign-in is initiated; used to troubleshoot sign-in activity.
     * @return string
     */
    public function getCorrelationId()
    {
        if (!$this->isPropertyAvailable("CorrelationId")) {
            return null;
        }
        return $this->getProperty("CorrelationId");
    }
    /**
     * The request ID sent from the client when the sign-in is initiated; used to troubleshoot sign-in activity.
     * @var string
     */
    public function setCorrelationId($value)
    {
        $this->setProperty("CorrelationId", $value, true);
    }
    /**
     * Indicates if a sign-in is interactive or not.
     * @return bool
     */
    public function getIsInteractive()
    {
        if (!$this->isPropertyAvailable("IsInteractive")) {
            return null;
        }
        return $this->getProperty("IsInteractive");
    }
    /**
     * Indicates if a sign-in is interactive or not.
     * @var bool
     */
    public function setIsInteractive($value)
    {
        $this->setProperty("IsInteractive", $value, true);
    }
    /**
     * Name of the resource the user signed into.
     * @return string
     */
    public function getResourceDisplayName()
    {
        if (!$this->isPropertyAvailable("ResourceDisplayName")) {
            return null;
        }
        return $this->getProperty("ResourceDisplayName");
    }
    /**
     * Name of the resource the user signed into.
     * @var string
     */
    public function setResourceDisplayName($value)
    {
        $this->setProperty("ResourceDisplayName", $value, true);
    }
    /**
     * ID of the resource that the user signed into.
     * @return string
     */
    public function getResourceId()
    {
        if (!$this->isPropertyAvailable("ResourceId")) {
            return null;
        }
        return $this->getProperty("ResourceId");
    }
    /**
     * ID of the resource that the user signed into.
     * @var string
     */
    public function setResourceId($value)
    {
        $this->setProperty("ResourceId", $value, true);
    }
    /**
     * Sign-in status. Possible values include `Success` and `Failure`.
     * @return SignInStatus
     */
    public function getStatus()
    {
        if (!$this->isPropertyAvailable("Status")) {
            return null;
        }
        return $this->getProperty("Status");
    }
    /**
     * Sign-in status. Possible values include `Success` and `Failure`.
     * @var SignInStatus
     */
    public function setStatus($value)
    {
        $this->setProperty("Status", $value, true);
    }
    /**
     * Device information from where the sign-in occurred; includes device ID, operating system, and browser. 
     * @return DeviceDetail
     */
    public function getDeviceDetail()
    {
        if (!$this->isPropertyAvailable("DeviceDetail")) {
            return null;
        }
        return $this->getProperty("DeviceDetail");
    }
    /**
     * Device information from where the sign-in occurred; includes device ID, operating system, and browser. 
     * @var DeviceDetail
     */
    public function setDeviceDetail($value)
    {
        $this->setProperty("DeviceDetail", $value, true);
    }
    /**
     * Provides the city, state, and country code where the sign-in originated.
     * @return SignInLocation
     */
    public function getLocation()
    {
        if (!$this->isPropertyAvailable("Location")) {
            return null;
        }
        return $this->getProperty("Location");
    }
    /**
     * Provides the city, state, and country code where the sign-in originated.
     * @var SignInLocation
     */
    public function setLocation($value)
    {
        $this->setProperty("Location", $value, true);
    }
    /**
     * The list of risk event types associated with the sign-in. Possible values: `unlikelyTravel`, `anonymizedIPAddress`, `maliciousIPAddress`, `unfamiliarFeatures`, `malwareInfectedIPAddress`, `suspiciousIPAddress`, `leakedCredentials`, `investigationsThreatIntelligence`,  `generic`, or `unknownFutureValue`.
     * @return array
     */
    public function getRiskEventTypes_v2()
    {
        if (!$this->isPropertyAvailable("RiskEventTypes_v2")) {
            return null;
        }
        return $this->getProperty("RiskEventTypes_v2");
    }
    /**
     * The list of risk event types associated with the sign-in. Possible values: `unlikelyTravel`, `anonymizedIPAddress`, `maliciousIPAddress`, `unfamiliarFeatures`, `malwareInfectedIPAddress`, `suspiciousIPAddress`, `leakedCredentials`, `investigationsThreatIntelligence`,  `generic`, or `unknownFutureValue`.
     * @var array
     */
    public function setRiskEventTypes_v2($value)
    {
        $this->setProperty("RiskEventTypes_v2", $value, true);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit