PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
hosting
/
api-php-lib
/
src
/
PleskX
/
Api
/
Struct
/
Certificate
<?php // Copyright 1999-2015. Parallels IP Holdings GmbH. namespace PleskX\Api\Struct\Certificate; class Info extends \PleskX\Api\Struct { /** @var string */ public $request; /** @var string */ public $privateKey; public function __construct($apiResponse) { $this->_initScalarProperties($apiResponse, [ ['csr' => 'request'], ['pvt' => 'privateKey'], ]); } }
[+]
..
[-] Info.php
[edit]