PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
hosting
/
api-php-lib
/
src
/
PleskX
/
Api
/
Struct
/
SecretKey
<?php // Copyright 1999-2015. Parallels IP Holdings GmbH. namespace PleskX\Api\Struct\SecretKey; class KeyInfo extends \PleskX\Api\Struct { /** @var string */ public $key; /** @var string */ public $ipAddress; /** @var string */ public $description; /** @var string */ public $login; public function __construct($apiResponse) { $this->_initScalarProperties($apiResponse, [ 'key', 'ip_address', 'description', 'login', ]); } }
[+]
..
[-] KeyInfo.php
[edit]