Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
really-simple-ssl
/
lets-encrypt
/
vendor
/
plesk
/
api-php-lib
/
src
/
Api
/
Struct
/
Session
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php // Copyright 1999-2020. Plesk International GmbH. namespace PleskX\Api\Struct\Session; defined('ABSPATH') or die(); class Info extends \PleskX\Api\Struct { /** @var string */ public $id; /** @var string */ public $type; /** @var string */ public $ipAddress; /** @var string */ public $login; /** @var string */ public $loginTime; /** @var string */ public $idle; public function __construct($apiResponse) { $this->_initScalarProperties($apiResponse, [ 'id', 'type', 'ip-address', 'login', 'login-time', 'idle', ]); } }